diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-03-12 21:59:42 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2014-06-05 16:44:19 (GMT) |
commit | 2a1b2d848693a3860f8e5f179b6c97f8c56abede (patch) | |
tree | 7987c9ba6b2be8fa15a6e7c9fe820ce512554f7e /Source/cmCustomCommand.cxx | |
parent | a08292059eba4fdded6643b225640ebf559b2dac (diff) | |
download | CMake-2a1b2d848693a3860f8e5f179b6c97f8c56abede.zip CMake-2a1b2d848693a3860f8e5f179b6c97f8c56abede.tar.gz CMake-2a1b2d848693a3860f8e5f179b6c97f8c56abede.tar.bz2 |
backtrace: Convert to local paths in IssueMessage
This is the only place we care show the FilePath to the user, so defer
the expensive relative path calculation until here.
Diffstat (limited to 'Source/cmCustomCommand.cxx')
-rw-r--r-- | Source/cmCustomCommand.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx index ae702e5..c161eb6 100644 --- a/Source/cmCustomCommand.cxx +++ b/Source/cmCustomCommand.cxx @@ -17,6 +17,7 @@ //---------------------------------------------------------------------------- cmCustomCommand::cmCustomCommand() + : Backtrace(NULL) { this->HaveComment = false; this->EscapeOldStyle = true; @@ -73,7 +74,8 @@ cmCustomCommand::cmCustomCommand(cmMakefile const* mf, Comment(comment?comment:""), WorkingDirectory(workingDirectory?workingDirectory:""), EscapeAllowMakeVars(false), - EscapeOldStyle(true) + EscapeOldStyle(true), + Backtrace(NULL) { this->EscapeOldStyle = true; this->EscapeAllowMakeVars = false; |