[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1428-ge26c19a

Brad King brad.king at kitware.com
Mon Jan 7 10:17:09 EST 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  e26c19a3ee3259d05953b0dbdecd89c328be7aa5 (commit)
       via  64717bbfa3dbf48d975e4b6a368f80f15cf78c05 (commit)
      from  d83569b74e0ea6e7bde0d417262969dd6cb5705d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e26c19a3ee3259d05953b0dbdecd89c328be7aa5
commit e26c19a3ee3259d05953b0dbdecd89c328be7aa5
Merge: d83569b 64717bb
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Jan 7 10:16:58 2013 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Jan 7 10:16:58 2013 -0500

    Merge topic 'update-kwsys' into next
    
    64717bb KWSys: Fix SystemTools::MakeDirectory after recent cleanup


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=64717bbfa3dbf48d975e4b6a368f80f15cf78c05
commit 64717bbfa3dbf48d975e4b6a368f80f15cf78c05
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Jan 7 10:13:27 2013 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Jan 7 10:14:44 2013 -0500

    KWSys: Fix SystemTools::MakeDirectory after recent cleanup
    
    In commit 6969515b (KWSys 2013-01-04, 2013-01-04) we brought in KWSys
    commit cb5f835f (SystemTools: Fix MakeDirectory with colon in path,
    2013-01-02) which removed a useless if condition but did not leave
    behind the unconditional resulting behavior.  Add the missing line.

diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx
index 9925640..760e529 100644
--- a/Source/kwsys/SystemTools.cxx
+++ b/Source/kwsys/SystemTools.cxx
@@ -630,6 +630,7 @@ bool SystemTools::MakeDirectory(const char* path)
     Mkdir(topdir.c_str());
     pos++;
     }
+  topdir = dir;
   if(Mkdir(topdir.c_str()) != 0)
     {
     // There is a bug in the Borland Run time library which makes MKDIR

-----------------------------------------------------------------------

Summary of changes:
 Source/kwsys/SystemTools.cxx |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list