diff options
Diffstat (limited to 'release/scripts')
-rw-r--r-- | release/scripts/extract_src.sh | 10 | ||||
-rw-r--r-- | release/scripts/miscfuncs.sh | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/release/scripts/extract_src.sh b/release/scripts/extract_src.sh index a340072..a77fe1d 100644 --- a/release/scripts/extract_src.sh +++ b/release/scripts/extract_src.sh @@ -1,13 +1,13 @@ #!/bin/sh -# $Id: extract_src.sh,v 1.7 1995/03/24 00:16:51 phk Exp $ +# $Id: extract_src.sh,v 1.8 1995/03/24 02:04:00 phk Exp $ PATH=/stand:$PATH DDIR=/usr/src -for DIST in base srcbin etc games gnu include lib libexec release sbin lkm \ - release share sys usrbin usrsbin; do - if [ -f ${DIST}/${DIST}.aa ]; then +for T in src*.aa ; do + DIST=`basename $T .aa` + if [ -f ${DIST}.aa ]; then echo "Extracting ${DIST} sources" - cat ${DIST}/${DIST}.?? + cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu ) elif [ -f ${DIST}.aa ]; then echo "Extracting ${DIST} sources" diff --git a/release/scripts/miscfuncs.sh b/release/scripts/miscfuncs.sh index 275c98b..4db3220 100644 --- a/release/scripts/miscfuncs.sh +++ b/release/scripts/miscfuncs.sh @@ -10,7 +10,7 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: miscfuncs.sh,v 1.6 1995/02/02 08:31:37 jkh Exp $ +# $Id: miscfuncs.sh,v 1.7 1995/02/10 01:12:38 jkh Exp $ if [ "${_MISCFUNCS_SH_LOADED_}" = "yes" ]; then return 0 @@ -21,8 +21,8 @@ fi PATH=/usr/bin:/usr/sbin:/bin:/sbin:/stand export PATH -# Keep this current with the distribution! -DISTNAME="2.0-950210-SNAP" +# Edited by src/release/Makefile +DISTNAME="FOOBAR" # Express or Custom install? INSTALL_TYPE="" |