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 cygnus_files="release release-info build-all.mk"
20 if ( echo $* | grep keep\-cygnus > /dev/null) ; then
21 keep_these_too="${keep_these_too} ${cygnus_files}"
23 lose_these_too="${lose_these_too} ${cygnus_files}"
26 mpw_files="mpw-README mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw"
28 if ( echo $* | grep keep\-mpw > /dev/null) ; then
29 keep_these_too="${keep_these_too} ${mpw_files}"
31 lose_these_too="${lose_these_too} ${mpw_files}"
34 # All files listed between the "Things-to-keep:" line and the
35 # "Do-last:" line will be kept. All other files will be removed.
36 # Directories listed in this section will have their own Sanitize
37 # called. Directories not listed will be removed in their entirety
114 # The lines between the "Do-last:" line and the end of the file
115 # are executed as a /bin/sh shell script after everything else is
120 if ( echo $* | egrep verbose > /dev/null ) ; then
126 # Remove "sanitize-Sanitize" lines.
127 if [ -n "${verbose}" ] ; then
128 echo Cleaning unconditional sanitizations out of Makefile.in...
131 sed '/start\-sanitize\-Sanitize/,/end-\sanitize\-Sanitize/d' < Makefile.in > new
132 if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
133 mv Makefile.in .Recover
137 if [ -n "${verbose}" ] ; then
138 echo Thawing away the \"chill\"...
141 # Don't try to clean directories here, as the 'mv' command will fail.
142 # Also, grep fails on NFS mounted directories.
143 if ( echo $* | grep keep\-chill > /dev/null ) ; then
145 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
146 if [ -n "${verbose}" ] ; then
147 echo Keeping chill stuff in $i
153 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
154 if [ -n "${verbose}" ] ; then
155 echo Thawing the \"chill\" out of $i...
158 sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
159 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
160 if [ -n "${verbose}" ] ; then
161 echo Caching $i in .Recover...
170 if [ -n "${verbose}" ] ; then
171 echo Removing traces of \"mpw\"...
174 # Don't try to clean directories here, as the 'mv' command will fail.
175 # Also, grep fails on NFS mounted directories.
176 if ( echo $* | grep keep\-mpw > /dev/null ) ; then
178 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
179 if [ -n "${verbose}" ] ; then
180 echo Keeping mpw stuff in $i
186 if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then
187 if [ -n "${verbose}" ] ; then
188 echo Removing traces of \"mpw\" from $i...
191 sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new
192 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
193 if [ -n "${verbose}" ] ; then
194 echo Caching $i in .Recover...
204 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
205 echo '***' Some mentions of Sanitize are still left in $i! 1>&2