diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-01-02 16:07:57 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-01-02 16:07:57 (GMT) |
commit | 9e5c219b871df4eb8e7ed4bc639645d9695fa38d (patch) | |
tree | bd3c3c415d55a71c8b123021fefbd379527d9e26 /Source | |
parent | bf044cec81c2b31c94850fffd184f99a95c84264 (diff) | |
download | CMake-9e5c219b871df4eb8e7ed4bc639645d9695fa38d.zip CMake-9e5c219b871df4eb8e7ed4bc639645d9695fa38d.tar.gz CMake-9e5c219b871df4eb8e7ed4bc639645d9695fa38d.tar.bz2 |
ENH: change framework order
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmFindPathCommand.cxx | 2 | ||||
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFindPathCommand.cxx b/Source/cmFindPathCommand.cxx index 68da096..305f4be 100644 --- a/Source/cmFindPathCommand.cxx +++ b/Source/cmFindPathCommand.cxx @@ -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) { diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index ae8c116..d47832e 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -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")) |