From 9e5c219b871df4eb8e7ed4bc639645d9695fa38d Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Mon, 2 Jan 2006 11:07:57 -0500 Subject: ENH: change framework order --- Source/cmFindPathCommand.cxx | 2 +- 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::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")) -- cgit v0.12