Fix the default framework name to be 'Product Framework.framework', not 'Product.framework'

This commit is contained in:
Paul Betts 2014-12-07 21:24:23 -08:00
parent 75eb15fa1f
commit d4be5b6e8e

View file

@ -33,7 +33,7 @@ base::FilePath MainDelegate::GetResourcesPakFilePath() {
}
void MainDelegate::OverrideFrameworkBundlePath() {
base::FilePath helper_path = GetFrameworksPath().Append(GetApplicationName() + ".framework");
base::FilePath helper_path = GetFrameworksPath().Append(GetApplicationName() + " Framework.framework");
base::mac::SetOverrideFrameworkBundlePath(helper_path);
}