diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-10-14 20:50:38 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-10-14 20:50:38 (GMT) |
commit | 39f112b71b375e627093a23b210896f058a72e9b (patch) | |
tree | add0f330e147a9ced235cae1cfb8bcbb77c902b0 /Source/cmLocalGenerator.cxx | |
parent | 9fe79b22979f962135f5a7b8d834bda30b024e4c (diff) | |
download | CMake-39f112b71b375e627093a23b210896f058a72e9b.zip CMake-39f112b71b375e627093a23b210896f058a72e9b.tar.gz CMake-39f112b71b375e627093a23b210896f058a72e9b.tar.bz2 |
BUG: make sure all returns for ConvertToRelativeOutputPath get passed by ConvertToOutputPath
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 4285048..fa4f3d8 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -396,7 +396,7 @@ std::string cmLocalGenerator::ConvertToRelativeOutputPath(const char* p) (pathIn[0] != '/' && pathIn[1] != ':') || pathIn.find("..") == 0) { - return pathIn; + return cmSystemTools::ConvertToOutputPath(p); } // do not use relative paths for network build trees |