BUG: The copy constructor should copy the escape settings.
This commit is contained in:
parent
f785ae9ac3
commit
4babd52d8d
@ -30,10 +30,10 @@ cmCustomCommand::cmCustomCommand(const cmCustomCommand& r):
|
|||||||
Depends(r.Depends),
|
Depends(r.Depends),
|
||||||
CommandLines(r.CommandLines),
|
CommandLines(r.CommandLines),
|
||||||
Comment(r.Comment),
|
Comment(r.Comment),
|
||||||
WorkingDirectory(r.WorkingDirectory)
|
WorkingDirectory(r.WorkingDirectory),
|
||||||
|
EscapeOldStyle(r.EscapeOldStyle),
|
||||||
|
EscapeAllowMakeVars(r.EscapeAllowMakeVars)
|
||||||
{
|
{
|
||||||
this->EscapeOldStyle = true;
|
|
||||||
this->EscapeAllowMakeVars = false;
|
|
||||||
this->Used = false;
|
this->Used = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user