1991-11-07 08:25:27 +01:00
|
|
|
# .Sanitize for devo.
|
1991-05-23 19:32:34 +02:00
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
|
|
|
|
# Each directory to survive it's way into a release will need a file
|
|
|
|
# like this one called "./.Sanitize". All keyword lines must exist,
|
|
|
|
# and must exist in the order specified by this file. Each directory
|
|
|
|
# in the tree will be processed, top down, in the following order.
|
|
|
|
|
|
|
|
# Hash started lines like this one are comments and will be deleted
|
|
|
|
# before anything else is done. Blank lines will also be squashed
|
|
|
|
# out.
|
|
|
|
|
|
|
|
# The lines between the "Do-first:" line and the "Things-to-keep:"
|
|
|
|
# line are executed as a /bin/sh shell script before anything else is
|
1991-11-07 08:25:27 +01:00
|
|
|
# done in this directory.
|
1991-05-23 19:32:34 +02:00
|
|
|
|
|
|
|
Do-first:
|
|
|
|
|
|
|
|
# All files listed between the "Things-to-keep:" line and the
|
1991-11-07 08:25:27 +01:00
|
|
|
# "Do-last:" line will be kept. All other files will be removed.
|
1991-05-23 19:32:34 +02:00
|
|
|
# Directories listed in this section will have their own Sanitize
|
|
|
|
# called. Directories not listed will be removed in their entirety
|
|
|
|
# with rm -rf.
|
|
|
|
|
|
|
|
Things-to-keep:
|
|
|
|
|
|
|
|
Makefile.in
|
1991-08-23 09:15:55 +02:00
|
|
|
README
|
1991-11-05 21:03:20 +01:00
|
|
|
DOC.configure
|
1991-07-25 00:25:50 +02:00
|
|
|
bison
|
1991-05-23 23:15:10 +02:00
|
|
|
bfd
|
1991-05-24 00:21:19 +02:00
|
|
|
binutils
|
1991-11-05 19:27:31 +01:00
|
|
|
clib
|
1991-05-23 19:32:34 +02:00
|
|
|
config
|
1991-08-22 09:30:50 +02:00
|
|
|
config.sub
|
1991-05-23 19:32:34 +02:00
|
|
|
configure
|
|
|
|
configure.in
|
1991-09-03 00:19:49 +02:00
|
|
|
cvs
|
1991-08-25 23:48:40 +02:00
|
|
|
diff
|
1991-09-03 00:19:49 +02:00
|
|
|
emacs
|
1991-05-23 19:32:34 +02:00
|
|
|
gas
|
1991-05-24 00:21:19 +02:00
|
|
|
gcc
|
|
|
|
gdb
|
1991-09-12 02:33:59 +02:00
|
|
|
gdbm
|
1991-11-19 06:23:19 +01:00
|
|
|
glob
|
1991-05-23 19:32:34 +02:00
|
|
|
gnulib
|
1991-08-25 23:48:40 +02:00
|
|
|
grep
|
1991-05-23 19:32:34 +02:00
|
|
|
include
|
1991-05-24 00:21:19 +02:00
|
|
|
ld
|
1991-05-23 19:32:34 +02:00
|
|
|
libiberty
|
1991-09-03 00:19:49 +02:00
|
|
|
make
|
|
|
|
prms
|
1991-08-26 01:40:24 +02:00
|
|
|
rcs
|
1991-05-23 19:32:34 +02:00
|
|
|
readline
|
1991-07-31 07:15:37 +02:00
|
|
|
texinfo
|
1991-05-23 19:32:34 +02:00
|
|
|
|
1991-11-07 08:25:27 +01:00
|
|
|
# The lines between the "Do-last:" line and the end of the file
|
|
|
|
# are executed as a /bin/sh shell script after everything else is
|
|
|
|
# done.
|
|
|
|
|
1991-05-23 19:32:34 +02:00
|
|
|
Do-last:
|
|
|
|
|
1991-09-13 05:11:27 +02:00
|
|
|
echo Looking for signs of \"v9\"...
|
|
|
|
|
|
|
|
# Don't try to clean directories here, as the 'mv' command will fail.
|
|
|
|
# Also, grep fails on NFS mounted directories.
|
|
|
|
if ( echo $* | grep keep\-v9 > /dev/null ) ; then
|
|
|
|
for i in * ; do
|
|
|
|
if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
|
|
|
|
echo Keeping v9 stuff in $i
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
for i in * ; do
|
|
|
|
if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
|
|
|
|
echo Cleaning the \"v9\" out of $i...
|
1991-10-10 02:08:04 +01:00
|
|
|
cp $i new
|
1991-09-13 05:11:27 +02:00
|
|
|
sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new
|
|
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
|
|
mv $i .Recover
|
|
|
|
fi
|
|
|
|
mv new $i
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
1991-10-21 23:10:13 +01:00
|
|
|
echo Looking for signs of \"life\"...
|
|
|
|
|
|
|
|
# Don't try to clean directories here, as the 'mv' command will fail.
|
|
|
|
# Also, grep fails on NFS mounted directories.
|
|
|
|
if ( echo $* | grep keep\-life > /dev/null ) ; then
|
|
|
|
for i in * ; do
|
|
|
|
if test ! -d $i && (grep sanitize-life $i > /dev/null) ; then
|
1991-10-21 23:15:19 +01:00
|
|
|
echo Keeping life alive in $i
|
1991-10-21 23:10:13 +01:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
for i in * ; do
|
|
|
|
if test ! -d $i && (grep sanitize-life $i > /dev/null) ; then
|
1991-10-21 23:15:19 +01:00
|
|
|
echo Beating the \"life\" out of $i...
|
1991-10-21 23:10:13 +01:00
|
|
|
cp $i new
|
|
|
|
sed '/start\-sanitize\-life/,/end-\sanitize\-life/d' < $i > new
|
|
|
|
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
|
|
|
mv $i .Recover
|
|
|
|
fi
|
|
|
|
mv new $i
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
1991-11-15 22:11:08 +01:00
|
|
|
for i in * ; do
|
|
|
|
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
|
|
|
|
echo Some mentions of Sanitize are still left in $i!
|
|
|
|
fi
|
|
|
|
done
|