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  90ab2fb96596c9a17ff92fe60c683eca5c919317 (commit)
       via  0bce6f497a1c2b172c7b1bc8e9dd1d686778abfb (commit)
      from  62bb3fb93b8077a3bdee8566f3d63177bbe088c6 (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=90ab2fb96596c9a17ff92fe60c683eca5c919317
commit 90ab2fb96596c9a17ff92fe60c683eca5c919317
Merge: 62bb3fb 0bce6f4
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Thu Mar 1 10:08:40 2012 -0500
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Thu Mar 1 10:08:40 2012 -0500

    Merge topic 'bootstrap-msys-paths' into next
    
    0bce6f4 bootstrap: Fix MSYS->Windows path conversion


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0bce6f497a1c2b172c7b1bc8e9dd1d686778abfb
commit 0bce6f497a1c2b172c7b1bc8e9dd1d686778abfb
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Thu Mar 1 10:06:19 2012 -0500
Commit:     Brad King <brad.k...@kitware.com>
CommitDate: Thu Mar 1 10:06:19 2012 -0500

    bootstrap: Fix MSYS->Windows path conversion
    
    Some MSYS bash implementations leave trailing space on the command line
    to 'cmd /c echo ...' after quoting the message.  Fix the sed expression
    that strips quotes to handle trailing spaces.

diff --git a/bootstrap b/bootstrap
index c67c28e..665c6c5 100755
--- a/bootstrap
+++ b/bootstrap
@@ -131,7 +131,7 @@ case "${cmake_system}" in
 *MINGW*)
   cmake_fix_slashes()
   {
-    cmd //c echo "$(echo "$1" | sed 's/\\/\//g')" | sed 's/^"//;s/"$//'
+    cmd //c echo "$(echo "$1" | sed 's/\\/\//g')" | sed 's/^"//;s/" *$//'
   }
   ;;
 *)

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

Summary of changes:
 bootstrap |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits

Reply via email to