diff options
author | Ben Boeckel <mathstuf@gmail.com> | 2013-08-02 19:49:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-08-08 17:31:10 (GMT) |
commit | 05dad99f5a1ee781da52df0ccc61b236087bcd2d (patch) | |
tree | 34591bf244babfa22aeaaf817a1c1b9b4f104a9d /Source/cmVariableWatchCommand.cxx | |
parent | 00ce12a3347d1fef25badff00c5abc3dc715f207 (diff) | |
download | CMake-05dad99f5a1ee781da52df0ccc61b236087bcd2d.zip CMake-05dad99f5a1ee781da52df0ccc61b236087bcd2d.tar.gz CMake-05dad99f5a1ee781da52df0ccc61b236087bcd2d.tar.bz2 |
variable_watch: Fix a typo in the error message
There was no space between "callback" and the quoted command name.
Diffstat (limited to 'Source/cmVariableWatchCommand.cxx')
-rw-r--r-- | Source/cmVariableWatchCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVariableWatchCommand.cxx b/Source/cmVariableWatchCommand.cxx index 297a92b..2b81d79 100644 --- a/Source/cmVariableWatchCommand.cxx +++ b/Source/cmVariableWatchCommand.cxx @@ -106,7 +106,7 @@ void cmVariableWatchCommand::VariableAccessed(const std::string& variable, cmOStringStream error; error << "Error in cmake code at\n" << arg.FilePath << ":" << arg.Line << ":\n" - << "A command failed during the invocation of callback\"" + << "A command failed during the invocation of callback \"" << command << "\"."; cmSystemTools::Error(error.str().c_str()); this->InCallback = false; |