Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv23698/scripts
Modified Files:
build.sh
Log Message:
unpack also *.tar.Z files
Index: build.sh
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -d -r1.58 -r1.59
--- build.sh 15 Oct 2003 12:22:25 -0000 1.58
+++ build.sh 19 Oct 2003 02:20:06 -0000 1.59
@@ -132,6 +132,12 @@
tar -xzf $TAR || exit 1
done
+ for TAR in `ls $SRCDIR/*.tar.Z`
+ do
+ echo unpacking $TAR
+ tar -xzf $TAR || exit 1
+ done
+
popd > /dev/null
;;
|