3 # Each directory to survive its way into a release will need a file
4 # like this one called "./.Sanitize". All keyword lines must exist,
5 # and must exist in the order specified by this file. Each directory
6 # in the tree will be processed, top down, in the following order.
8 # Hash started lines like this one are comments and will be deleted
9 # before anything else is done. Blank lines will also be squashed
12 # The lines between the "Do-first:" line and the "Things-to-keep:"
13 # line are executed as a /bin/sh shell script before anything else is
14 # done in this directory.
18 if ( echo $* | grep keep\-cygnus > /dev/null) ; then
19 keep_these_too="${keep_these_too} release release-info build-all.mk"
21 lose_these_too="${lose_these_too} release release-info build-all.mk"
24 if ( echo $* | grep keep\-mpw > /dev/null) ; then
25 keep_these_too="mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw ${keep_these_too}"
27 lose_these_too="mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw ${lose_these_too}"
30 # All files listed between the "Things-to-keep:" line and the
31 # "Do-last:" line will be kept. All other files will be removed.
32 # Directories listed in this section will have their own Sanitize
33 # called. Directories not listed will be removed in their entirety
110 # The lines between the "Do-last:" line and the end of the file
111 # are executed as a /bin/sh shell script after everything else is
116 if ( echo $* | egrep verbose > /dev/null ) ; then
122 if [ -n "${verbose}" ] ; then
123 echo Looking for signs of \"v9\"...
126 # Don't try to clean directories here, as the 'mv' command will fail.
127 # Also, grep fails on NFS mounted directories.
128 if ( echo $* | grep keep\-v9 > /dev/null ) ; then
130 if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
131 if [ -n "${verbose}" ] ; then
132 echo Keeping v9 stuff in $i
138 if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
139 if [ -n "${verbose}" ] ; then
140 echo Cleaning the \"v9\" out of $i...
143 sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new
144 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
152 if [ -n "${verbose}" ] ; then
153 echo Thawing away the \"chill\"...
156 # Don't try to clean directories here, as the 'mv' command will fail.
157 # Also, grep fails on NFS mounted directories.
158 if ( echo $* | grep keep\-chill > /dev/null ) ; then
160 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
161 if [ -n "${verbose}" ] ; then
162 echo Keeping chill stuff in $i
168 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
169 if [ -n "${verbose}" ] ; then
170 echo Thawing the \"chill\" out of $i...
173 sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
174 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
175 if [ -n "${verbose}" ] ; then
176 echo Caching $i in .Recover...
185 if [ -n "${verbose}" ] ; then
186 echo Removing traces of \"mpw\"...
189 # Don't try to clean directories here, as the 'mv' command will fail.
190 # Also, grep fails on NFS mounted directories.
191 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
193 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
194 if [ -n "${verbose}" ] ; then
195 echo Keeping mpw stuff in $i
201 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
202 if [ -n "${verbose}" ] ; then
203 echo Removing traces of \"mpw\" from $i...
206 sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
207 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
208 if [ -n "${verbose}" ] ; then
209 echo Caching $i in .Recover...
219 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
220 echo '***' Some mentions of Sanitize are still left in $i! 1>&2