1991-11-07 07:25:27 +00:00
|
|
|
# .Sanitize for devo.
|
1991-05-23 17:32:34 +00: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 07:25:27 +00:00
|
|
|
# done in this directory.
|
1991-05-23 17:32:34 +00:00
|
|
|
|
|
|
|
Do-first:
|
|
|
|
|
|
|
|
# All files listed between the "Things-to-keep:" line and the
|
1991-11-07 07:25:27 +00:00
|
|
|
# "Do-last:" line will be kept. All other files will be removed.
|
1991-05-23 17:32:34 +00: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 07:15:55 +00:00
|
|
|
README
|
1991-07-24 22:25:50 +00:00
|
|
|
bison
|
1991-05-23 21:15:10 +00:00
|
|
|
bfd
|
1991-05-23 22:21:19 +00:00
|
|
|
binutils
|
1991-12-18 23:42:08 +00:00
|
|
|
cfg-paper.texi
|
1991-11-05 18:27:31 +00:00
|
|
|
clib
|
1991-05-23 17:32:34 +00:00
|
|
|
config
|
1991-12-17 17:07:39 +00:00
|
|
|
config.sub
|
1992-02-22 00:25:24 +00:00
|
|
|
configure.bat
|
1991-05-23 17:32:34 +00:00
|
|
|
configure
|
|
|
|
configure.in
|
1992-01-13 20:29:53 +00:00
|
|
|
configure.man
|
1992-02-07 21:46:30 +00:00
|
|
|
configure.texi
|
1991-09-02 22:19:49 +00:00
|
|
|
cvs
|
1991-08-25 21:48:40 +00:00
|
|
|
diff
|
1991-09-02 22:19:49 +00:00
|
|
|
emacs
|
1991-05-23 17:32:34 +00:00
|
|
|
gas
|
1991-05-23 22:21:19 +00:00
|
|
|
gcc
|
|
|
|
gdb
|
1991-09-12 00:33:59 +00:00
|
|
|
gdbm
|
1991-11-19 05:23:19 +00:00
|
|
|
glob
|
1991-05-23 17:32:34 +00:00
|
|
|
gnulib
|
1991-08-25 21:48:40 +00:00
|
|
|
grep
|
1991-05-23 17:32:34 +00:00
|
|
|
include
|
1991-05-23 22:21:19 +00:00
|
|
|
ld
|
1991-05-23 17:32:34 +00:00
|
|
|
libiberty
|
1992-02-08 00:32:56 +00:00
|
|
|
libg++
|
1991-09-02 22:19:49 +00:00
|
|
|
make
|
|
|
|
prms
|
1991-08-25 23:40:24 +00:00
|
|
|
rcs
|
1991-05-23 17:32:34 +00:00
|
|
|
readline
|
1991-07-31 05:15:37 +00:00
|
|
|
texinfo
|
1991-05-23 17:32:34 +00:00
|
|
|
|
1991-11-07 07:25:27 +00: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 17:32:34 +00:00
|
|
|
Do-last:
|
|
|
|
|
1991-09-13 03:11:27 +00: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 01:08:04 +00:00
|
|
|
cp $i new
|
1991-09-13 03:11:27 +00: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 22:10:13 +00: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 22:15:19 +00:00
|
|
|
echo Keeping life alive in $i
|
1991-10-21 22:10:13 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
for i in * ; do
|
|
|
|
if test ! -d $i && (grep sanitize-life $i > /dev/null) ; then
|
1991-10-21 22:15:19 +00:00
|
|
|
echo Beating the \"life\" out of $i...
|
1991-10-21 22:10:13 +00: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 21:11:08 +00: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
|