Fix a bogon.

This commit is contained in:
Poul-Henning Kamp 1995-03-24 03:38:48 +00:00
parent 836ed9f2c2
commit 7a10e6810f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7312

View File

@ -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