|
|
@@ -31,12 +31,12 @@ cmCustomCommand::cmCustomCommand(const cmCustomCommand& r):
|
|
|
Byproducts(r.Byproducts),
|
|
|
Depends(r.Depends),
|
|
|
CommandLines(r.CommandLines),
|
|
|
- HaveComment(r.HaveComment),
|
|
|
+ Backtrace(r.Backtrace),
|
|
|
Comment(r.Comment),
|
|
|
WorkingDirectory(r.WorkingDirectory),
|
|
|
+ HaveComment(r.HaveComment),
|
|
|
EscapeAllowMakeVars(r.EscapeAllowMakeVars),
|
|
|
EscapeOldStyle(r.EscapeOldStyle),
|
|
|
- Backtrace(r.Backtrace),
|
|
|
UsesTerminal(r.UsesTerminal)
|
|
|
{
|
|
|
}
|
|
|
@@ -77,15 +77,13 @@ cmCustomCommand::cmCustomCommand(cmMakefile const* mf,
|
|
|
Byproducts(byproducts),
|
|
|
Depends(depends),
|
|
|
CommandLines(commandLines),
|
|
|
- HaveComment(comment?true:false),
|
|
|
+ Backtrace(),
|
|
|
Comment(comment?comment:""),
|
|
|
WorkingDirectory(workingDirectory?workingDirectory:""),
|
|
|
+ HaveComment(comment?true:false),
|
|
|
EscapeAllowMakeVars(false),
|
|
|
- EscapeOldStyle(true),
|
|
|
- Backtrace()
|
|
|
+ EscapeOldStyle(true)
|
|
|
{
|
|
|
- this->EscapeOldStyle = true;
|
|
|
- this->EscapeAllowMakeVars = false;
|
|
|
if(mf)
|
|
|
{
|
|
|
this->Backtrace = mf->GetBacktrace();
|