From fd05925bdae87299d167261c5d4cc6e5eef0271e Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Mon, 8 Aug 2005 13:28:12 -0400 Subject: [PATCH] ENH: fix for earlier fix on source with relative path --- Source/cmAddCustomCommandCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmAddCustomCommandCommand.cxx b/Source/cmAddCustomCommandCommand.cxx index 185c0defa..c0750a594 100644 --- a/Source/cmAddCustomCommandCommand.cxx +++ b/Source/cmAddCustomCommandCommand.cxx @@ -142,7 +142,7 @@ bool cmAddCustomCommandCommand::InitialPass(std::vector const& args switch (doing) { case doing_source: - source = filename; + source = copy; break; case doing_output: output = filename;