diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-12-13 21:44:49 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-12-13 21:44:49 (GMT) |
commit | d6422d3ad69ab0c68bd50bc35a1c7a2edbe564f5 (patch) | |
tree | 44534e700da4321d6575160535767a7cf77ae518 /Modules/CPack.STGZ_Header.sh.in | |
parent | 2245c50c51c57558c855b93cdf67ffe588bead8a (diff) | |
download | CMake-d6422d3ad69ab0c68bd50bc35a1c7a2edbe564f5.zip CMake-d6422d3ad69ab0c68bd50bc35a1c7a2edbe564f5.tar.gz CMake-d6422d3ad69ab0c68bd50bc35a1c7a2edbe564f5.tar.bz2 |
BUG: Fixes for dash
Diffstat (limited to 'Modules/CPack.STGZ_Header.sh.in')
-rwxr-xr-x | Modules/CPack.STGZ_Header.sh.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/CPack.STGZ_Header.sh.in b/Modules/CPack.STGZ_Header.sh.in index 1325239..7044be8 100755 --- a/Modules/CPack.STGZ_Header.sh.in +++ b/Modules/CPack.STGZ_Header.sh.in @@ -58,7 +58,7 @@ for a in "$@CPACK_AT_SIGN@"; do 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 @@ fi 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 @@ ____cpack__here_doc____ 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 @@ ____cpack__here_doc____ 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}" |