# .Sanitize for devo/gdb.
-# Each directory to survive it's way into a release will need a file
+# Each directory to survive its 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.
# 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
+# done in this directory.
Do-first:
-if ( echo $* | grep keep\-v9 > /dev/null ) ; then
- keep_these_too="sp64-tdep.c"
+mpw_files="mpw-config.in mpw-make.in ser-mac.c mac-xdep.c mac-defs.h macgdb.r ChangeLog.mpw"
+
+if ( echo $* | grep keep\-mpw > /dev/null ) ; then
+ keep_these_too="${mpw_files} ${keep_these_too}"
+ if [ -n "${verbose}" ] ; then
+ echo Keeping ${mpw_files}
+ fi
+else
+ lose_these_too="${mpw_files} ${lose_these_too}"
+ if [ -n "${verbose}" ] ; then
+ echo Deleting ${mpw_files}
+ fi
+fi
+
+gm_files="mpw-xconfig.in mpw-init.c ChangeLog.gm"
+
+if ( echo $* | grep keep\-gm > /dev/null ) ; then
+ keep_these_too="${gm_files} ${keep_these_too}"
+ if [ -n "${verbose}" ] ; then
+ echo Keeping ${gm_files}
+ fi
+else
+ lose_these_too="${gm_files} ${lose_these_too}"
+ if [ -n "${verbose}" ] ; then
+ echo Deleting ${gm_files}
+ fi
+fi
+
+hpread_files="hpread.c ChangeLog.hpread"
+
+if ( echo $* | grep keep\-hpread > /dev/null ) ; then
+ keep_these_too="${hpread_files} ${keep_these_too}"
+ if [ -n "${verbose}" ] ; then
+ echo Keeping ${hpread_files}
+ fi
else
- lose_these_too="sp64-tdep.c"
+ lose_these_too="${hpread_files} ${lose_these_too}"
+ if [ -n "${verbose}" ] ; then
+ echo Deleting ${hpread_files}
+ fi
fi
# All files listed between the "Things-to-keep:" line and the
alpha-nat.c
alpha-tdep.c
altos-xdep.c
+annotate.c
+annotate.h
arm-convert.s
arm-pinsn.c
arm-tdep.c
convex-xdep.c
copying.awk
copying.c
+core-sol2.c
core-svr4.c
core.c
coredep.c
corelow.c
cp-valprint.c
+cxux-nat.c
dbxread.c
dcache.c
dcache.h
exec.c
expprint.c
expression.h
+f-exp.y
+f-lang.c
+f-lang.h
+f-typeprint.c
+f-valprint.c
findvar.c
fork-child.c
frame.h
gcc.patch
gdb-stabs.h
gdb.1
+gdba.el
gdbcmd.h
gdbcore.h
gdbserver
+gdbtk.c
+gdbtk.tcl
gdbtypes.c
gdbtypes.h
go32-xdep.c
mips-pinsn.c
mips-tdep.c
mipsm3-nat.c
+mipsv4-nat.c
mipsread.c
monitor.h
news-xdep.c
nindy-share
nindy-tdep.c
nlmread.c
-ns32k-opcode.h
ns32k-pinsn.c
ns32km3-nat.c
objfiles.c
objfiles.h
os9kread.c
osfsolib.c
-paread.c
parse.c
parser-defs.h
partial-stab.h
printcmd.c
procfs.c
+ptx4-nat.c
pyr-pinsn.c
pyr-tdep.c
pyr-xdep.c
remote-mon.c
remote-nindy.c
remote-os9k.c
+remote-pa.c
remote-sim.c
remote-sim.h
remote-st.c
rs6000-pinsn.c
rs6000-tdep.c
saber.suppress
+ser-e7kpc.c
ser-go32.c
ser-tcp.c
ser-unix.c
signals.h
solib.c
solib.h
+somread.c
source.c
+sp64-tdep.c
sparc-nat.c
sparc-pinsn.c
sparc-stub.c
sparc-tdep.c
+sparcl-stub.c
+sparcl-tdep.c
sparclite
stabsread.c
stabsread.h
stack.c
standalone.c
+stop-gdb.c
stuff.c
sun3-nat.c
sun386-nat.c
testsuite
thread.c
thread.h
+top.c
+top.h
typeprint.c
typeprint.h
ultra3-nat.c
# Things which are explicitly *not* kept, for now.
-# deblib/ - CVS won't let you blow away directories yet,
-# so this is still around from when Stu checked
-# it in, as part of Lucid support.
# energize - Part of Lucid support.
# energize-patches - Part of Lucid support.
# energize.c - Part of Lucid support.
Things-to-lose:
-deblib
energize
energize-patches
energize.c
Do-last:
-echo Looking for signs of \"v9\"...
+echo Removing traces of \"mpw\"...
+
+# 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
+ echo Keeping mpw stuff in $i
+ fi
+ done
+else
+ for i in * ; do
+ if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
+ echo Removing traces of \"mpw\" out of $i...
+ cp $i new
+ sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
+ if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+ echo Caching $i in .Recover...
+ mv $i .Recover
+ fi
+ mv new $i
+ fi
+ done
+fi
+
+echo Removing traces of \"hpread\"...
# 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
+if ( echo $* | grep keep\-hpread > /dev/null ) ; then
for i in * ; do
- if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
- echo Keeping v9 stuff in $i
+ if test ! -d $i && (grep sanitize-hpread $i > /dev/null) ; then
+ echo Keeping hpread 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...
+ if test ! -d $i && (grep sanitize-hpread $i > /dev/null) ; then
+ echo Removing traces of \"hpread\" out of $i...
cp $i new
- sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new
+ sed '/start\-sanitize\-hpread/,/end-\sanitize\-hpread/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
echo Caching $i in .Recover...
mv $i .Recover
done
fi
+
# End of file.