binutils-gdb/.Sanitize

125 lines
2.7 KiB
Plaintext
Raw Normal View History

# .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
# 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
# "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-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
cfg-paper.texi
1991-11-05 19:27:31 +01:00
clib
1991-05-23 19:32:34 +02:00
config
1991-12-17 18:07:39 +01:00
config.sub
1992-02-22 01:25:24 +01:00
configure.bat
1991-05-23 19:32:34 +02:00
configure
configure.in
1992-01-13 21:29:53 +01:00
configure.man
1992-02-07 22:46:30 +01:00
configure.texi
cvs
1991-08-25 23:48:40 +02:00
diff
emacs
1991-05-23 19:32:34 +02:00
gas
1991-05-24 00:21:19 +02:00
gcc
gdb
gdbtest
1991-09-12 02:33:59 +02:00
gdbm
1991-11-19 06:23:19 +01:00
glob
gprof
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
libgcc
1992-02-08 01:32:56 +01:00
libg++
make
mmalloc
1992-02-26 08:04:57 +01:00
newlib
1992-03-21 00:58:25 +01:00
send_pr
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
# 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:
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...
cp $i new
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
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
echo Keeping life alive in $i
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-life $i > /dev/null) ; then
echo Beating the \"life\" out of $i...
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
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