binutils-gdb/.Sanitize

236 lines
4.9 KiB
Plaintext
Raw Normal View History

# .Sanitize for devo.
1991-05-23 19:32:34 +02:00
# Each directory to survive its way into a release will need a file
1991-05-23 19:32:34 +02:00
# 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:
if ( echo $* | grep keep\-cygnus > /dev/null) ; then
1993-11-04 03:10:36 +01:00
keep_these_too="${keep_these_too} release release-info build-all.mk"
else
1993-11-04 03:10:36 +01:00
lose_these_too="${lose_these_too} release release-info build-all.mk"
fi
if ( echo $* | grep keep\-mpw > /dev/null) ; then
1994-02-28 01:16:13 +01:00
keep_these_too="mpw-README mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw ${keep_these_too}"
else
1994-02-28 01:16:13 +01:00
lose_these_too="mpw-README mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw ${lose_these_too}"
fi
1991-05-23 19:32:34 +02:00
# 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:
1992-07-22 04:46:15 +02:00
.cvsignore
1992-09-29 23:51:18 +01:00
COPYING
COPYING.LIB
1992-06-25 05:11:49 +02:00
CYGNUS
1992-04-24 22:53:28 +02:00
ChangeLog
1991-05-23 19:32:34 +02:00
Makefile.in
1991-08-23 09:15:55 +02:00
README
1992-04-24 23:51:47 +02:00
autoconf
1991-05-23 23:15:10 +02:00
bfd
1991-05-24 00:21:19 +02:00
binutils
byacc
1991-05-23 19:32:34 +02:00
config
config.guess
1991-12-17 18:07:39 +01:00
config.sub
1991-05-23 19:32:34 +02:00
configure
1992-04-22 23:52:44 +02:00
configure.bat
1991-05-23 19:32:34 +02:00
configure.in
cvs
1992-09-08 22:58:39 +02:00
deja-gnu
dejagnu
1991-08-25 23:48:40 +02:00
diff
dvips
emacs
1992-12-06 00:48:21 +01:00
etc
1992-11-13 02:05:59 +01:00
expect
fileutils
flex
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
1992-04-22 23:52:44 +02:00
gdbtest
1991-11-19 06:23:19 +01:00
glob
gprof
1991-08-25 23:48:40 +02:00
grep
groff
1991-05-23 19:32:34 +02:00
include
1993-06-23 22:29:28 +02:00
install.sh
1992-05-06 01:59:05 +02:00
ispell
1991-05-24 00:21:19 +02:00
ld
1992-02-08 01:32:56 +01:00
libg++
1992-04-22 23:52:44 +02:00
libgcc
libiberty
1993-08-18 03:24:15 +02:00
libio
m4
make
mmalloc
1992-04-22 23:52:44 +02:00
move-if-change
1992-02-26 08:04:57 +01:00
newlib
1992-09-01 00:26:18 +02:00
opcodes
1993-11-11 20:50:02 +01:00
pagas
1992-04-24 22:53:28 +02:00
patch
1992-07-09 08:21:03 +02:00
prms
1991-08-26 01:40:24 +02:00
rcs
1991-05-23 19:32:34 +02:00
readline
sed
1993-02-21 03:53:55 +01:00
send-pr
shellutils
1993-02-04 19:44:21 +01:00
sim
1992-11-13 02:05:59 +01:00
tcl
textutils
tk
1992-07-22 04:46:15 +02:00
test-build.mk
1991-07-31 07:15:37 +02:00
texinfo
1992-05-05 04:52:54 +02:00
tgas
1993-11-11 20:50:02 +01:00
utils
1993-02-03 04:24:20 +01:00
uudecode
wdiff
xiberty
1991-05-23 19:32:34 +02:00
1993-05-27 08:44:29 +02:00
Things-to-lose:
# 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:
1993-05-27 05:22:48 +02:00
if ( echo $* | egrep verbose > /dev/null ) ; then
verbose=true
else
verbose=
fi
# Remove "sanitize-Sanitize" lines.
if [ -n "${verbose}" ] ; then
echo Cleaning unconditional sanitizations out of Makefile.in...
fi
cp Makefile.in new
sed '/start\-sanitize\-Sanitize/,/end-\sanitize\-Sanitize/d' < Makefile.in > new
if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
mv Makefile.in .Recover
fi
mv new Makefile.in
1993-05-27 05:22:48 +02:00
if [ -n "${verbose}" ] ; then
echo Looking for signs of \"v9\"...
fi
# 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
1993-05-27 05:22:48 +02:00
if [ -n "${verbose}" ] ; then
echo Keeping v9 stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
1993-05-27 05:22:48 +02:00
if [ -n "${verbose}" ] ; then
echo Cleaning the \"v9\" out of $i...
fi
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
1993-05-27 05:22:48 +02:00
if [ -n "${verbose}" ] ; then
echo Thawing away the \"chill\"...
fi
# Don't try to clean directories here, as the 'mv' command will fail.
# Also, grep fails on NFS mounted directories.
if ( echo $* | grep keep\-chill > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
1993-05-27 05:22:48 +02:00
if [ -n "${verbose}" ] ; then
echo Keeping chill stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
1993-05-27 05:22:48 +02:00
if [ -n "${verbose}" ] ; then
echo Thawing the \"chill\" out of $i...
fi
cp $i new
sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
1993-05-27 05:22:48 +02:00
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
if [ -n "${verbose}" ] ; then
echo Removing traces of \"mpw\"...
fi
# Don't try to clean directories here, as the 'mv' command will fail.
# Also, grep fails on NFS mounted directories.
if ( echo $* | grep keep\-mpw > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping mpw stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"mpw\" from $i...
fi
cp $i new
sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
for i in * ; do
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
1993-05-27 05:22:48 +02:00
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
fi
done
1992-04-24 22:53:28 +02:00
# eof