From 836ed9f2c2a8125505bba410b3eaff6405929bd4 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Fri, 24 Mar 1995 02:45:34 +0000 Subject: A whole slew of changes relating to the generation of src-dists. --- release/scripts/extract_src.sh | 10 +++++----- release/scripts/miscfuncs.sh | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'release/scripts') diff --git a/release/scripts/extract_src.sh b/release/scripts/extract_src.sh index a340072cddd59..a77fe1dff6ee6 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 275c98b9d05ab..4db32204eaae4 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="" -- cgit v1.3