ENH: change framework order

This commit is contained in:
Bill Hoffman 2006-01-02 11:07:57 -05:00
parent bf044cec81
commit 9e5c219b87
2 changed files with 2 additions and 2 deletions

View File

@ -149,8 +149,8 @@ cmStdString cmFindPathCommand::FindHeaderInFrameworks(
}
path.push_back("~/Library/Frameworks");
path.push_back("/Library/Frameworks");
path.push_back("/System/Library/Frameworks");
path.push_back("/Network/Library/Frameworks");
path.push_back("/System/Library/Frameworks");
for( std::vector<std::string>::iterator i = path.begin();
i != path.end(); ++i)
{

View File

@ -2279,8 +2279,8 @@ std::string cmMakefile::FindLibrary(const char* name,
{
path.push_back("~/Library/Frameworks");
path.push_back("/Library/Frameworks");
path.push_back("/System/Library/Frameworks");
path.push_back("/Network/Library/Frameworks");
path.push_back("/System/Library/Frameworks");
}
}
if(m_LocalGenerator->GetGlobalGenerator()->GetLanguageEnabled("C"))