summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-08-09 14:35:23 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-08-09 14:35:23 (GMT)
commit0b0c97d3b2b49b329627755ff3637e3f897706a6 (patch)
tree58d3394d0a6f60c417f01df1c476a8c8d97c556b /Source/cmLocalUnixMakefileGenerator3.cxx
parent154529bd1c3fc27493c92c93a21676d492875c38 (diff)
downloadCMake-0b0c97d3b2b49b329627755ff3637e3f897706a6.zip
CMake-0b0c97d3b2b49b329627755ff3637e3f897706a6.tar.gz
CMake-0b0c97d3b2b49b329627755ff3637e3f897706a6.tar.bz2
BUG: fix for sun make with spaces
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 63c79d4..2fe763d 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -322,7 +322,7 @@ cmLocalUnixMakefileGenerator3
// Include the dependencies for the target.
std::string depPath = dir;
depPath += "/depend.make";
- depPath = this->Convert(depPath.c_str(),FULL,MAKEFILE);
+ depPath = this->Convert(depPath.c_str(),HOME_OUTPUT,MAKEFILE);
ruleFileStream
<< "# Include any dependencies generated for this target.\n"
<< m_IncludeDirective << " "
@@ -330,7 +330,7 @@ cmLocalUnixMakefileGenerator3
<< "\n\n";
// Include the flags for the target.
- flagFileName = this->Convert(flagFileName.c_str(), FULL, MAKEFILE);
+ flagFileName = this->Convert(flagFileName.c_str(), HOME_OUTPUT, MAKEFILE);
ruleFileStream
<< "# Include the compile flags for this target's objects.\n"
<< m_IncludeDirective << " "