diff options
author | Brad King <brad.king@kitware.com> | 2006-05-03 14:07:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-05-03 14:07:08 (GMT) |
commit | 826d238ebd644be6e1ea00363e76ecba7699a649 (patch) | |
tree | fb444959534d8bd1af678dee9b43cf185e96bee4 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 0cfda4a7f09825c8852d5763a91097841612cda3 (diff) | |
download | CMake-826d238ebd644be6e1ea00363e76ecba7699a649.zip CMake-826d238ebd644be6e1ea00363e76ecba7699a649.tar.gz CMake-826d238ebd644be6e1ea00363e76ecba7699a649.tar.bz2 |
BUG: Fix to avoid repeated calls to CollapseFullPath during dependency scanning. This addresses bug#3191.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index efd4642..165c997 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1275,6 +1275,7 @@ cmLocalUnixMakefileGenerator3 includeRegexScan.c_str(), includeRegexComplain.c_str(), generatedFiles, includeCacheFileName); + scanner->SetHomeOutputDirectory(mf->GetHomeOutputDirectory()); } #ifdef CMAKE_BUILD_WITH_CMAKE else if(lang == "Fortran") |