[cmake-commits] king committed cmLocalGenerator.cxx 1.201 1.202

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Mar 13 10:58:14 EST 2007


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

Modified Files:
	cmLocalGenerator.cxx 
Log Message:
BUG: Fix check of EXCLUDE_FROM_ALL property to use boolean type.  This is required for installation of subdirectories to work.


Index: cmLocalGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalGenerator.cxx,v
retrieving revision 1.201
retrieving revision 1.202
diff -u -d -r1.201 -r1.202
--- cmLocalGenerator.cxx	12 Mar 2007 14:26:59 -0000	1.201
+++ cmLocalGenerator.cxx	13 Mar 2007 15:58:12 -0000	1.202
@@ -409,7 +409,7 @@
     for(std::vector<cmLocalGenerator*>::const_iterator
           ci = this->Children.begin(); ci != this->Children.end(); ++ci)
       {
-      if(!(*ci)->GetMakefile()->GetProperty("EXCLUDE_FROM_ALL"))
+      if(!(*ci)->GetMakefile()->GetPropertyAsBool("EXCLUDE_FROM_ALL"))
         {
         std::string odir = (*ci)->GetMakefile()->GetStartOutputDirectory();
         cmSystemTools::ConvertToUnixSlashes(odir);



More information about the Cmake-commits mailing list