[Cmake-commits] CMake branch, next, updated. v2.8.8-2938-g1a69094

Brad King brad.king at kitware.com
Mon May 28 08:49:49 EDT 2012


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  1a69094c751d8e72bd54c5551c36a600200dc035 (commit)
       via  e5dc76894ae8fbc95126ebb54a838e0342686b96 (commit)
      from  6204b042c1e7e34a8807db00e611b20446d54bb7 (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=1a69094c751d8e72bd54c5551c36a600200dc035
commit 1a69094c751d8e72bd54c5551c36a600200dc035
Merge: 6204b04 e5dc768
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon May 28 08:49:47 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon May 28 08:49:47 2012 -0400

    Merge topic 'bootstrap-old-sh' into next
    
    e5dc768 bootstrap: Port back to old shells (#13199)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e5dc76894ae8fbc95126ebb54a838e0342686b96
commit e5dc76894ae8fbc95126ebb54a838e0342686b96
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue May 8 09:43:19 2012 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Tue May 8 09:52:39 2012 -0400

    bootstrap: Port back to old shells (#13199)
    
    Since commit f39e82c9 (bootstrap: Re-implement command line option
    processing, 2011-12-16) bootstrap uses POSIX shell expressions of the
    form "${x#y}" to remove prefix pattern 'y' from the vaule of 'x'.
    Although this is allowed by POSIX old shells on some platforms do not
    support it.  Revert to using 'sed' to work with old shells.

diff --git a/bootstrap b/bootstrap
index 3be3d1f..7b044e7 100755
--- a/bootstrap
+++ b/bootstrap
@@ -460,6 +460,12 @@ cmake_escape ()
   echo $1 | sed "s/ /\\\\ /g"
 }
 
+# Strip prefix from argument
+cmake_arg ()
+{
+  echo "$1" | sed "s/^${2-[^=]*=}//"
+}
+
 # Write message to the log
 cmake_log ()
 {
@@ -544,21 +550,24 @@ cmake_ccache_enabled=
 cmake_prefix_dir="${cmake_default_prefix}"
 while test $# != 0; do
   case "$1" in
-  --prefix=*) cmake_prefix_dir=`cmake_fix_slashes "${1#*=}"` ;;
-  --parallel=*) cmake_parallel_make="${1#*=}" ;;
-  --datadir=*) cmake_data_dir="${1#*=}" ;;
-  --docdir=*) cmake_doc_dir="${1#*=}" ;;
-  --mandir=*) cmake_man_dir="${1#*=}" ;;
-  --init=*) cmake_init_file="${1#*=}" ;;
+  --prefix=*) dir=`cmake_arg "$1"`
+              cmake_prefix_dir=`cmake_fix_slashes "$dir"` ;;
+  --parallel=*) cmake_parallel_make=`cmake_arg "$1"` ;;
+  --datadir=*) cmake_data_dir=`cmake_arg "$1"` ;;
+  --docdir=*) cmake_doc_dir=`cmake_arg "$1"` ;;
+  --mandir=*) cmake_man_dir=`cmake_arg "$1"` ;;
+  --init=*) cmake_init_file=`cmake_arg "$1"` ;;
   --system-libs) cmake_bootstrap_system_libs="${cmake_bootstrap_system_libs} -DCMAKE_USE_SYSTEM_LIBRARIES=1" ;;
   --no-system-libs) cmake_bootstrap_system_libs="${cmake_bootstrap_system_libs} -DCMAKE_USE_SYSTEM_LIBRARIES=0" ;;
   --system-bzip2|--system-curl|--system-expat|--system-libarchive|--system-zlib)
-    cmake_bootstrap_system_libs="${cmake_bootstrap_system_libs} -DCMAKE_USE_SYSTEM_LIBRARY_`cmake_toupper ${1#--system-}`=1" ;;
+    lib=`cmake_arg "$1" "--system-"`
+    cmake_bootstrap_system_libs="${cmake_bootstrap_system_libs} -DCMAKE_USE_SYSTEM_LIBRARY_`cmake_toupper $lib`=1" ;;
   --no-system-bzip2|--no-system-curl|--no-system-expat|--no-system-libarchive|--no-system-zlib)
-    cmake_bootstrap_system_libs="${cmake_bootstrap_system_libs} -DCMAKE_USE_SYSTEM_LIBRARY_`cmake_toupper ${1#--no-system-}`=0" ;;
+    lib=`cmake_arg "$1" "--no-system-"`
+    cmake_bootstrap_system_libs="${cmake_bootstrap_system_libs} -DCMAKE_USE_SYSTEM_LIBRARY_`cmake_toupper $lib`=0" ;;
   --qt-gui) cmake_bootstrap_qt_gui="1" ;;
   --no-qt-gui) cmake_bootstrap_qt_gui="0" ;;
-  --qt-qmake=*) cmake_bootstrap_qt_qmake="${1#*=}" ;;
+  --qt-qmake=*) cmake_bootstrap_qt_qmake=`cmake_arg "$1"` ;;
   --help) cmake_usage ;;
   --version) cmake_version_display ; exit 2 ;;
   --verbose) cmake_verbose=TRUE ;;

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list