[cmake-commits] andy committed CPack.STGZ_Header.sh.in 1.3 1.4

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Dec 13 16:44:51 EST 2006


Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv17130/Modules

Modified Files:
	CPack.STGZ_Header.sh.in 
Log Message:
BUG: Fixes for dash


Index: CPack.STGZ_Header.sh.in
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CPack.STGZ_Header.sh.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- CPack.STGZ_Header.sh.in	3 May 2006 20:24:14 -0000	1.3
+++ CPack.STGZ_Header.sh.in	13 Dec 2006 21:44:49 -0000	1.4
@@ -58,7 +58,7 @@
   fi
 done
 
-if [ "x${cpack_include_subdir}x" != "xx" -o "x${cpack_skip_license}x" == "xTRUEx" ]
+if [ "x${cpack_include_subdir}x" != "xx" -o "x${cpack_skip_license}x" = "xTRUEx" ]
 then
   interactive=FALSE
 fi
@@ -73,7 +73,7 @@
 
 echo "The archive will be extracted to: ${toplevel}"
 
-if [ "x${interactive}x" == "xTRUEx" ]
+if [ "x${interactive}x" = "xTRUEx" ]
 then
   echo ""
   echo "If you want to stop extracting, please press <ctrl-C>."
@@ -95,7 +95,7 @@
     esac
   fi
 
-  if [ "x${cpack_include_subdir}x" == "xx" ]
+  if [ "x${cpack_include_subdir}x" = "xx" ]
   then
     echo "By default the @CPACK_PACKAGE_NAME@ will be installed in:"
     echo "  \"${toplevel}/@CPACK_PACKAGE_FILE_NAME@\""
@@ -110,7 +110,7 @@
   fi
 fi
 
-if [ "x${cpack_include_subdir}x" == "xTRUEx" ]
+if [ "x${cpack_include_subdir}x" = "xTRUEx" ]
 then
   toplevel="${toplevel}/@CPACK_PACKAGE_FILE_NAME@"
   mkdir -p "${toplevel}"



More information about the Cmake-commits mailing list