diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-03-24 02:45:34 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-03-24 02:45:34 +0000 |
| commit | 836ed9f2c2a8125505bba410b3eaff6405929bd4 (patch) | |
| tree | 0e4f1564ba07271ebcd942e65e0caf19b9e55329 /release/scripts | |
| parent | 32d2e89f5d94601ef9fc5f5b6f86bc1cacd4ac55 (diff) | |
Notes
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 a340072cddd5..a77fe1dff6ee 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 275c98b9d05a..4db32204eaae 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="" |
