diff options
Diffstat (limited to 'Source/cmCustomCommand.cxx')
-rw-r--r-- | Source/cmCustomCommand.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx index debc805..94c08ec 100644 --- a/Source/cmCustomCommand.cxx +++ b/Source/cmCustomCommand.cxx @@ -30,10 +30,10 @@ cmCustomCommand::cmCustomCommand(const cmCustomCommand& r): Depends(r.Depends), CommandLines(r.CommandLines), Comment(r.Comment), - WorkingDirectory(r.WorkingDirectory) + WorkingDirectory(r.WorkingDirectory), + EscapeOldStyle(r.EscapeOldStyle), + EscapeAllowMakeVars(r.EscapeAllowMakeVars) { - this->EscapeOldStyle = true; - this->EscapeAllowMakeVars = false; this->Used = false; } |