summaryrefslogtreecommitdiffstats
path: root/Source/cmAddCustomCommandCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-08-08 17:28:12 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-08-08 17:28:12 (GMT)
commitfd05925bdae87299d167261c5d4cc6e5eef0271e (patch)
tree26083fc1068e6db9b0fc308224fe05a76b16f118 /Source/cmAddCustomCommandCommand.cxx
parentbb043289d06c333ab4c53ed77b19a1e56c1171ce (diff)
downloadCMake-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.cxx2
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;