[Cmake-commits] [cmake-commits] hoffman committed cmake.cxx 1.426 1.427

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Sep 14 13:45:42 EDT 2009


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

Modified Files:
	cmake.cxx 
Log Message:
Fix for Bug #9190, -U did not work on case insensitive file systems because of call to glob convert to regex that expected to work with files.


Index: cmake.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmake.cxx,v
retrieving revision 1.426
retrieving revision 1.427
diff -C 2 -d -r1.426 -r1.427
*** cmake.cxx	11 Sep 2009 14:04:10 -0000	1.426
--- cmake.cxx	14 Sep 2009 17:45:40 -0000	1.427
***************
*** 417,421 ****
          }
        cmsys::RegularExpression regex(
!               cmsys::Glob::PatternToRegex(entryPattern.c_str(), true).c_str());
        //go through all cache entries and collect the vars which will be removed
        std::vector<std::string> entriesToDelete;
--- 417,421 ----
          }
        cmsys::RegularExpression regex(
!         cmsys::Glob::PatternToRegex(entryPattern.c_str(), true, true).c_str());
        //go through all cache entries and collect the vars which will be removed
        std::vector<std::string> entriesToDelete;



More information about the Cmake-commits mailing list