BUG: The copy constructor should copy the escape settings.

This commit is contained in:
Brad King 2006-09-27 15:26:03 -04:00
parent f785ae9ac3
commit 4babd52d8d
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}