tell people what we do at the end, since it can take a little while.

use "set -e" when extracting bindist
make src dists extract.
This commit is contained in:
Poul-Henning Kamp 1995-04-13 09:06:15 +00:00
parent 9776cec4df
commit 5184328cf8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7794
2 changed files with 6 additions and 3 deletions

View File

@ -1,8 +1,10 @@
#!/bin/sh
# $Id: extract_bin.sh,v 1.4 1995/03/28 18:14:10 phk Exp $
# $Id: extract_bin.sh,v 1.5 1995/04/09 03:44:03 jkh Exp $
set -e
PATH=/stand:$PATH
DDIR=/
# Temporary kludge for pathological bindist.
if [ -f $DDIR/etc/sysconfig ]; then
mv $DDIR/etc/sysconfig $DDIR/etc/sysconfig.save
@ -16,6 +18,7 @@ fi
cd /usr/share/misc
for i in termcap vgrindefs
do
echo "running cap_mkdb $i"
/usr/bin/cap_mkdb $i
/usr/sbin/chown bin.bin $i.db
/bin/chmod 444 $i.db

View File

@ -1,11 +1,11 @@
#!/bin/sh
# $Id: extract_src.sh,v 1.11 1995/03/25 05:03:40 phk Exp $
# $Id: extract_src.sh,v 1.12 1995/03/28 08:01:47 phk Exp $
PATH=/stand:$PATH
DDIR=/usr/src
mkdir -p $DDIR
for T in src*.aa ; do
for T in s*.aa ; do
DIST=`basename $T .aa`
if [ -f ${DIST}.aa ]; then
echo "Extracting ${DIST} sources"