diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-28 18:48:02 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-28 18:48:02 (GMT) |
commit | d9dd47422bbc14c452ee49ecb91547b527cc46cb (patch) | |
tree | 2e3386a28cd614c1bf273e0b66476c281fd4c2c7 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 09b4b2d62ccd962d18ea56f493b12ad338cdb209 (diff) | |
download | CMake-d9dd47422bbc14c452ee49ecb91547b527cc46cb.zip CMake-d9dd47422bbc14c452ee49ecb91547b527cc46cb.tar.gz CMake-d9dd47422bbc14c452ee49ecb91547b527cc46cb.tar.bz2 |
BUG: Handle spaces in the path
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 2240345..19ba3a3 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1585,6 +1585,7 @@ cmLocalUnixMakefileGenerator3 // Framework not handled yet abort(); } + obj = cmSystemTools::RelativePath(this->Makefile->GetHomeOutputDirectory(), obj.c_str()); } else { |