diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-08-08 17:28:12 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-08-08 17:28:12 (GMT) |
commit | fd05925bdae87299d167261c5d4cc6e5eef0271e (patch) | |
tree | 26083fc1068e6db9b0fc308224fe05a76b16f118 /Source/cmAddCustomCommandCommand.cxx | |
parent | bb043289d06c333ab4c53ed77b19a1e56c1171ce (diff) | |
download | CMake-fd05925bdae87299d167261c5d4cc6e5eef0271e.zip CMake-fd05925bdae87299d167261c5d4cc6e5eef0271e.tar.gz CMake-fd05925bdae87299d167261c5d4cc6e5eef0271e.tar.bz2 |
ENH: fix for earlier fix on source with relative path
Diffstat (limited to 'Source/cmAddCustomCommandCommand.cxx')
-rw-r--r-- | Source/cmAddCustomCommandCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAddCustomCommandCommand.cxx b/Source/cmAddCustomCommandCommand.cxx index 185c0de..c0750a5 100644 --- a/Source/cmAddCustomCommandCommand.cxx +++ b/Source/cmAddCustomCommandCommand.cxx @@ -142,7 +142,7 @@ bool cmAddCustomCommandCommand::InitialPass(std::vector<std::string> const& args switch (doing) { case doing_source: - source = filename; + source = copy; break; case doing_output: output = filename; |