From 7a10e6810f7e8dfa586d73d1107b7c49add466f4 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Fri, 24 Mar 1995 03:38:48 +0000 Subject: [PATCH] Fix a bogon. --- release/scripts/extract_src.sh | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/release/scripts/extract_src.sh b/release/scripts/extract_src.sh index a77fe1dff6ee..62a7b44296ba 100644 --- a/release/scripts/extract_src.sh +++ b/release/scripts/extract_src.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: extract_src.sh,v 1.8 1995/03/24 02:04:00 phk Exp $ +# $Id: extract_src.sh,v 1.9 1995/03/24 02:45:34 phk Exp $ PATH=/stand:$PATH DDIR=/usr/src @@ -7,12 +7,8 @@ for T in src*.aa ; do DIST=`basename $T .aa` if [ -f ${DIST}.aa ]; then echo "Extracting ${DIST} sources" - cat ${DIST}.?? - | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu ) - elif [ -f ${DIST}.aa ]; then - echo "Extracting ${DIST} sources" - cat ${DIST}.?? - | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu ) + cat ${DIST}.?? | + gzip -c -d | ( cd $DDIR; cpio -H tar -imdu ) fi done ln -fs /usr/src/sys /sys