From a41575532a9b9cfacb623b5fe8751098a8950f80 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Mon, 8 May 2006 14:34:13 +0000
Subject: [PATCH] INTEGRATION: CWS soc (1.5.110); FILE MERGED 2006/03/16
12:17:14 is 1.5.110.1: #133458# extract only parameter for download scripts
---
setup_native/scripts/downloadscript.sh | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/setup_native/scripts/downloadscript.sh b/setup_native/scripts/downloadscript.sh
index 14e56adf8124..d6140569c405 100644
--- a/setup_native/scripts/downloadscript.sh
+++ b/setup_native/scripts/downloadscript.sh
@@ -6,6 +6,12 @@ UNPACKDIR=/var/tmp/unpack_PRODUCTNAMEPLACEHOLDER
diskSpaceRequired=DISCSPACEPLACEHOLDER
checksum=CHECKSUMPLACEHOLDER
+EXTRACTONLY="no"
+if [ "$1" = "-x" ]
+then
+ EXTRACTONLY=yes
+fi
+
# Determining current platform
platform=`uname -s`
@@ -69,10 +75,13 @@ $tail_prog +$linenum $0 | (cd $UNPACKDIR; tar xf -)
echo "All files have been successfully unpacked."
-if [ -f $UNPACKDIR/setup ]
+if [ "$EXTRACTONLY" != "yes" ]
then
- chmod 775 $UNPACKDIR/setup
- $UNPACKDIR/setup
+ if [ -f $UNPACKDIR/setup ]
+ then
+ chmod 775 $UNPACKDIR/setup
+ $UNPACKDIR/setup
+ fi
fi
exit 0