diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-08-20 13:23:16 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-08-20 13:23:16 (GMT) |
commit | 48febc4ed3e036af77027a60f4fa996f18908b93 (patch) | |
tree | dd4bb479d32c684b7126da69a60cd0b96eaebac3 /Source/cmSetCommand.cxx | |
parent | edc738173b8a50e65557ea0fc237a3432621aa3a (diff) | |
download | CMake-48febc4ed3e036af77027a60f4fa996f18908b93.zip CMake-48febc4ed3e036af77027a60f4fa996f18908b93.tar.gz CMake-48febc4ed3e036af77027a60f4fa996f18908b93.tar.bz2 |
BUG: cmSystemTools::CollapseFullPath is a bad thing to call on the compiler which is a filepath
Diffstat (limited to 'Source/cmSetCommand.cxx')
-rw-r--r-- | Source/cmSetCommand.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmSetCommand.cxx b/Source/cmSetCommand.cxx index c25065c..00e1bc5 100644 --- a/Source/cmSetCommand.cxx +++ b/Source/cmSetCommand.cxx @@ -126,11 +126,6 @@ bool cmSetCommand::InitialPass(std::vector<std::string>& args) return true; } } - // if value is a path, collapse it (cleaner) - if (type == cmCacheManager::PATH || type == cmCacheManager::FILEPATH) - { - value = cmSystemTools::CollapseFullPath(value.c_str()); - } // if it is meant to be in the cache then define it in the cache if(cache) { |