summaryrefslogtreecommitdiffstats
path: root/Source/cmCableWrapTclCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-11-06 14:35:48 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-11-06 14:35:48 (GMT)
commit319a5e007713726e1548148045b157eb286f1ef9 (patch)
treec58e4d05bfba8d63b6da93135ec826b9fe107409 /Source/cmCableWrapTclCommand.cxx
parent05a884c675b0fb7693e46502c57f3cd663c5691d (diff)
downloadCMake-319a5e007713726e1548148045b157eb286f1ef9.zip
CMake-319a5e007713726e1548148045b157eb286f1ef9.tar.gz
CMake-319a5e007713726e1548148045b157eb286f1ef9.tar.bz2
BUG: CustomCommand has to use full path to Source file now
Diffstat (limited to 'Source/cmCableWrapTclCommand.cxx')
-rw-r--r--Source/cmCableWrapTclCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCableWrapTclCommand.cxx b/Source/cmCableWrapTclCommand.cxx
index b1b0a7a..84cb44d 100644
--- a/Source/cmCableWrapTclCommand.cxx
+++ b/Source/cmCableWrapTclCommand.cxx
@@ -308,7 +308,7 @@ void cmCableWrapTclCommand::GenerateCableFiles() const
depends.push_back(packageConfigName);
std::vector<std::string> outputs;
- outputs.push_back(packageTclFileName+".cxx");
+ outputs.push_back(packageTclFullName+".cxx");
m_Makefile->AddCustomCommand(packageConfigName.c_str(),
command.c_str(),
@@ -479,7 +479,7 @@ void cmCableWrapTclCommand::GenerateCableClassFiles(const char* name,
depends.push_back(classXmlName);
std::vector<std::string> outputs;
- outputs.push_back(classTclFileName+".cxx");
+ outputs.push_back(classTclFullName+".cxx");
m_Makefile->AddCustomCommand(classConfigName.c_str(),
command.c_str(),