diff options
author | Brad King <brad.king@kitware.com> | 2001-07-03 14:53:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-07-03 14:53:10 (GMT) |
commit | 3524dc421fe272f6154919bdd0c3243265a0e421 (patch) | |
tree | de1057da55615bc78d2c385981810908d7397648 /Source | |
parent | 331c517eeb8c11e8fc67598a8156d14a2a865533 (diff) | |
download | CMake-3524dc421fe272f6154919bdd0c3243265a0e421.zip CMake-3524dc421fe272f6154919bdd0c3243265a0e421.tar.gz CMake-3524dc421fe272f6154919bdd0c3243265a0e421.tar.bz2 |
ENH: Removed -fsyntax-only flag from call to gcc-xml. It should be part of GCCXML_FLAGS.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCableWrapTclCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCableWrapTclCommand.cxx b/Source/cmCableWrapTclCommand.cxx index e38b8fb..cf65331 100644 --- a/Source/cmCableWrapTclCommand.cxx +++ b/Source/cmCableWrapTclCommand.cxx @@ -273,7 +273,7 @@ void cmCableWrapTclCommand::GenerateCableClassFiles(const char* name, commandArgs += cmSystemTools::EscapeSpaces(i->c_str()); } - commandArgs += " -fsyntax-only -fxml="+classXmlName+" "+classCxxName; + commandArgs += " -fxml="+classXmlName+" "+classCxxName; std::vector<std::string> outputs; outputs.push_back(classXmlName); |