diff options
author | phk <phk@FreeBSD.org> | 1995-03-24 02:45:34 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-03-24 02:45:34 +0000 |
commit | a3bee0e414af1daf8795f29c45553337affa5a1a (patch) | |
tree | 0e4f1564ba07271ebcd942e65e0caf19b9e55329 /release/scripts | |
parent | 946c41de428d278d09cbf675004e73094530ad6e (diff) | |
download | FreeBSD-src-a3bee0e414af1daf8795f29c45553337affa5a1a.zip FreeBSD-src-a3bee0e414af1daf8795f29c45553337affa5a1a.tar.gz |
A whole slew of changes relating to the generation of src-dists.
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="" |