1991-12-01 05:45:47 +01:00
|
|
|
|
|
|
|
# Sanitize.in for devo.
|
|
|
|
# $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
|
|
|
|
|
|
|
|
Do-first:
|
|
|
|
|
|
|
|
# All files listed between the "Things-to-keep:" line and the
|
|
|
|
# "Files-to-sed:" line will be kept. All other files will be removed.
|
|
|
|
# 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:
|
|
|
|
|
|
|
|
ChangeLog
|
1992-09-27 07:23:03 +01:00
|
|
|
adobe.h
|
1991-12-01 05:45:47 +01:00
|
|
|
aout64.h
|
|
|
|
ar.h
|
1993-07-21 00:54:28 +02:00
|
|
|
dynix3.h
|
1991-12-01 05:45:47 +01:00
|
|
|
encap.h
|
|
|
|
host.h
|
|
|
|
hp.h
|
1993-04-29 18:08:39 +02:00
|
|
|
hp300hpux.h
|
1992-06-20 03:00:46 +02:00
|
|
|
hppa.h
|
1991-12-01 05:45:47 +01:00
|
|
|
ranlib.h
|
|
|
|
reloc.h
|
|
|
|
stab.def
|
|
|
|
stab_gnu.h
|
|
|
|
sun4.h
|
|
|
|
|
1993-05-27 08:44:29 +02:00
|
|
|
Things-to-lose:
|
|
|
|
|
1993-07-30 18:46:19 +02:00
|
|
|
|
1991-12-01 05:45:47 +01:00
|
|
|
Do-last:
|
|
|
|
|
|
|
|
v9dirty="aout64.h"
|
|
|
|
|
1993-05-27 05:22:48 +02:00
|
|
|
if ( echo $* | egrep verbose > /dev/null ) ; then
|
|
|
|
verbose=true
|
|
|
|
else
|
|
|
|
verbose=
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
1991-12-01 05:45:47 +01:00
|
|
|
if ( echo $* | grep keep\-v9 > /dev/null ) ; then
|
1993-05-27 05:22:48 +02:00
|
|
|
if [ -n "${verbose}" ] ; then
|
|
|
|
echo Keeping v9 in ${v9dirty}
|
|
|
|
fi
|
1991-12-01 05:45:47 +01:00
|
|
|
else
|
|
|
|
for i in ${v9dirty} ; do
|
1993-05-27 05:22:48 +02:00
|
|
|
if [ -n "${verbose}" ] ; then
|
|
|
|
echo Sanitizing v9 in $i
|
|
|
|
fi
|
1991-12-01 05:45:47 +01:00
|
|
|
rm -f new
|
|
|
|
grep -v v9 $i > new
|
|
|
|
if [ -n "${safe}" ] ; then
|
|
|
|
mv $i .Recover
|
|
|
|
else
|
|
|
|
rm $i
|
|
|
|
fi
|
|
|
|
mv new $i
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
# End of file.
|