[cmake-commits] king committed cmCustomCommand.cxx 1.18 1.19

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Sep 27 15:26:08 EDT 2006


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv27771

Modified Files:
	cmCustomCommand.cxx 
Log Message:
BUG: The copy constructor should copy the escape settings.


Index: cmCustomCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmCustomCommand.cxx,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- cmCustomCommand.cxx	27 Sep 2006 17:43:45 -0000	1.18
+++ cmCustomCommand.cxx	27 Sep 2006 19:26:03 -0000	1.19
@@ -30,10 +30,10 @@
   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;
 }
 



More information about the Cmake-commits mailing list