diff options
author | Brad King <brad.king@kitware.com> | 2002-08-28 19:08:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-08-28 19:08:18 (GMT) |
commit | 1168d5a85d2e9bf4b74926b1790ded87fd4d5072 (patch) | |
tree | 8236fb0d47a39cfb5a38e18d9fadfa5ded9f531a /Utilities/cmake_release_unix_build.sh | |
parent | d0be2896d7191e56818aaac48f7177b9d92a9693 (diff) | |
download | CMake-1168d5a85d2e9bf4b74926b1790ded87fd4d5072.zip CMake-1168d5a85d2e9bf4b74926b1790ded87fd4d5072.tar.gz CMake-1168d5a85d2e9bf4b74926b1790ded87fd4d5072.tar.bz2 |
ENH: Moved build of source tarball to package script.
Diffstat (limited to 'Utilities/cmake_release_unix_build.sh')
-rwxr-xr-x | Utilities/cmake_release_unix_build.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Utilities/cmake_release_unix_build.sh b/Utilities/cmake_release_unix_build.sh index cd9f319..a6c85ac 100755 --- a/Utilities/cmake_release_unix_build.sh +++ b/Utilities/cmake_release_unix_build.sh @@ -29,25 +29,6 @@ if test ! -d ${SOURCE_DIR} ; then mv CMake CMake-$VERSION fi -# Make the source tarball if requested. -if test "${CREATE_SOURCE_TARBALL}" = "yes" ; then - TARBALL="${TARBALL_DIR}/CMake$VERSION-src-unix.tar" - echo "Creating CMake$VERSION-src-unix.tar" - if ${TAR} cvf $TARBALL CMake-$VERSION \ - > ${LOG_DIR}/CMake$VERSION-src-unix.log 2>&1 ; then : ; else - "Error, see ${LOG_DIR}/CMake$VERSION-src-unix.log" - exit 1 - fi - if test "x${GZIP}" != "x" ; then - echo "Creating $TARBALL.gz" - ${GZIP} -c $TARBALL > $TARBALL.gz - fi - if test "x${COMPRESS}" != "x" ; then - echo "Creating $TARBALL.Z" - ${COMPRESS} $TARBALL - fi -fi - # Build the release. cd ${BUILD_DIR} echo "Writing CMakeCache.txt..." |