From 33ed97c4019547cd6ce6c32058980705ea0d4ac4 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 21 Aug 2002 15:52:04 -0400 Subject: ENH: Added -files to end of internal binary tarball to distinguish from the outer tarball's name. --- Utilities/cmake_release_unix_package.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Utilities/cmake_release_unix_package.sh b/Utilities/cmake_release_unix_package.sh index 1c172dc..1ee9b0d 100755 --- a/Utilities/cmake_release_unix_package.sh +++ b/Utilities/cmake_release_unix_package.sh @@ -48,11 +48,12 @@ EOF CreatePackage # Create the release tarballs. -echo "Creating cmake-$VERSION-$PLATFORM.tar" +INTERNAL_NAME="cmake-$VERSION-$PLATFORM-files" +echo "Creating ${INTERNAL_NAME}.tar" cd ${INSTALL_DIR}${PREFIX} -if ${TAR} cvf ${INSTALL_DIR}/cmake-$VERSION-$PLATFORM.tar ${INSTALL_SUBDIRS} \ - > ${LOG_DIR}/cmake-$VERSION-$PLATFORM.log 2>&1 ; then : ; else - echo "Error, see ${LOG_DIR}/cmake-$VERSION-$PLATFORM.log" +if ${TAR} cvf ${INSTALL_DIR}/${INTERNAL_NAME}.tar ${INSTALL_SUBDIRS} \ + > ${LOG_DIR}/${INTERNAL_NAME}.log 2>&1 ; then : ; else + echo "Error, see ${LOG_DIR}/${INTERNAL_NAME}.log" exit 1 fi @@ -61,7 +62,7 @@ cd ${INSTALL_DIR} ${CAT} >> README < ${LOG_DIR}/CMake$VERSION-$PLATFORM.log 2>&1 ; then : ; else "Error, see ${LOG_DIR}/CMake$VERSION-$PLATFORM.log" exit 1 -- cgit v0.12