diff options
author | Brad King <brad.king@kitware.com> | 2009-02-24 20:37:09 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-02-24 20:37:09 (GMT) |
commit | 39f8b91125ee3cb426968f089049f393dee1f699 (patch) | |
tree | 01b7de7bf168040f33dfd6d492fe7ddeff2619eb /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | ff32962a682387ada24a7485a1bd21a3fc1b19d4 (diff) | |
download | CMake-39f8b91125ee3cb426968f089049f393dee1f699.zip CMake-39f8b91125ee3cb426968f089049f393dee1f699.tar.gz CMake-39f8b91125ee3cb426968f089049f393dee1f699.tar.bz2 |
BUG: Remove implicit include dir suppression
We used to suppress generation of -I/usr/include (and on OSX also
-I/usr/local/include). This behavior seems to cause more trouble than
it's worth, so I'm removing it until someone encounters the original
problem it fixed. See issue #8598.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index a65d7c6..f92ff86 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -500,7 +500,7 @@ void cmLocalUnixMakefileGenerator3::WriteDirectoryInformationFile() infoFileStream << "SET(CMAKE_C_INCLUDE_PATH\n"; std::vector<std::string> includeDirs; - this->GetIncludeDirectories(includeDirs, false); + this->GetIncludeDirectories(includeDirs); for(std::vector<std::string>::iterator i = includeDirs.begin(); i != includeDirs.end(); ++i) { |