summaryrefslogtreecommitdiff
path: root/ACE-install.sh
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-05 21:05:55 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-05 21:05:55 +0000
commita1ad0ff9457906badfd4662d10b67d78d2484ea4 (patch)
tree300f2388955cb2b80d6aa9382ee02b18b983881f /ACE-install.sh
parent20079dd806f482359c1d12b7feec2a9ecc127065 (diff)
downloadATCD-a1ad0ff9457906badfd4662d10b67d78d2484ea4.tar.gz
*** empty log message ***
Diffstat (limited to 'ACE-install.sh')
-rw-r--r--ACE-install.sh22
1 files changed, 4 insertions, 18 deletions
diff --git a/ACE-install.sh b/ACE-install.sh
index 2adda42c357..ba7fa67bf0d 100644
--- a/ACE-install.sh
+++ b/ACE-install.sh
@@ -179,32 +179,18 @@ fi
cd ${MY_ACEDIR}
-echo "Uncomressing ACE archive ..."
-
-gunzip ACE*tar.gz || \
-{
- echo "gunzip failed. Aborting script !!"
- echo ""
- exit 22
-}
-
-echo ""
-echo "Extracting ACE files into `pwd`/ACE_wrappers directory ..."
+echo "Uncomressing ACE archive and extracting ACE files"
+echo "into `pwd`/ACE_wrappers directory ..."
echo ""
-tar xvf ACE*tar || \
+gunzip -c ACE*tar.gz | tar xvf - || \
{
echo ""
- echo "tar failed. Aborting script !!"
+ echo "gunzip or tar failed. Aborting script !!"
echo ""
exit 33
}
-echo ""
-echo "Re-compressing ACE source using <gzip -9> ..."
-gzip -9 ACE*tar
-echo ""
-
if [ -d ${WRAPPER_ROOT} ]
then