summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-08-08 15:02:40 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-08-08 15:02:40 (GMT)
commitf7d26c4ab9f7ef450101f1b098c02ee326380ee3 (patch)
treed6623f8c25d544338c00e2ff22519fdd42d825b9 /Source/cmLocalUnixMakefileGenerator3.cxx
parent30d362f80a66972328cdc7b87fb595cfc19bafbf (diff)
downloadCMake-f7d26c4ab9f7ef450101f1b098c02ee326380ee3.zip
CMake-f7d26c4ab9f7ef450101f1b098c02ee326380ee3.tar.gz
CMake-f7d26c4ab9f7ef450101f1b098c02ee326380ee3.tar.bz2
ENH: fix and issue with spaces in paths
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 4a7df0d..44dce7e 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -330,6 +330,9 @@ cmLocalUnixMakefileGenerator3
<< "\n\n";
// make sure the depend file exists
+ depPath = dir;
+ depPath += "/depend.make";
+ depPath = this->Convert(depPath.c_str(),FULL,UNCHANGED);
if (!cmSystemTools::FileExists(depPath.c_str()))
{
// Write an empty dependency file.