-fix GetFrameworkFlags() for Mac, which was broken with my last commit

Alex
This commit is contained in:
Alex Neundorf 2010-05-03 21:28:12 +02:00
parent 0b7206dd23
commit d7ceb75e8a
1 changed files with 1 additions and 2 deletions

View File

@ -1445,7 +1445,7 @@ std::string cmMakefileTargetGenerator::GetFrameworkFlags()
std::set<cmStdString> emitted;
#ifdef __APPLE__ /* don't insert this when crosscompiling e.g. to iphone */
emitted.insert("/System/Library/Frameworks");
#else
#endif
std::vector<std::string> includes;
this->LocalGenerator->GetIncludeDirectories(includes);
std::vector<std::string>::iterator i;
@ -1477,7 +1477,6 @@ std::string cmMakefileTargetGenerator::GetFrameworkFlags()
}
}
return flags;
#endif
}
//----------------------------------------------------------------------------