summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-02-25 00:28:44 (GMT)
committerBrad King <brad.king@kitware.com>2005-02-25 00:28:44 (GMT)
commitde47b43c6f2f40e62620c49a3b34960f3cb8d90c (patch)
treeac983d2736edd0cd447c62cdd698ecab5ca7f685
parent397dc1cef5cb778bd013cdb9b4139b3c7ab1f096 (diff)
downloadCMake-de47b43c6f2f40e62620c49a3b34960f3cb8d90c.zip
CMake-de47b43c6f2f40e62620c49a3b34960f3cb8d90c.tar.gz
CMake-de47b43c6f2f40e62620c49a3b34960f3cb8d90c.tar.bz2
BUG: Need to configure relative path support for LocalGenerate to support old makefile generator.
-rw-r--r--Source/cmGlobalGenerator.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 4b8d711..0d66113 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -641,6 +641,9 @@ void cmGlobalGenerator::LocalGenerate()
// start with this directory
cmLocalGenerator *lg = this->CreateLocalGenerator();
+ // Setup relative path generation.
+ this->ConfigureRelativePaths();
+
// set the Start directories
lg->GetMakefile()->SetStartDirectory(m_CMakeInstance->GetStartDirectory());
lg->GetMakefile()->SetStartOutputDirectory(m_CMakeInstance->GetStartOutputDirectory());