summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmFindPathCommand.cxx2
-rw-r--r--Source/cmMakefile.cxx2
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"))