1 ########################
13 # YO! READ ME!!!!!!!!!
14 # If you're about to add a file or directory which isn't checked out as part
15 # of every module in devo (e.g., if "cvs co gas+utils" won't get it, or if
16 # "cvs co gcc" won't get it), then don't, Don't, DON'T add it to the regular
17 # things-to-keep or things-to-lose sections. Instead, add it to the setting
18 # of keep_these_too or lose_these_too before those variables are rescanned
19 # to check for the existence of the items listed in them.
21 # Otherwise, somebody will check out some package that doesn't include your
22 # new file, and will get warnings from Sanitize when everything is really
23 # okay. You don't want to get people in the habit of ignoring complaints from
24 # Sanitize, do you? No, I didn't think so.
26 # If you do add a file to the regular things-to-keep section, don't forget
27 # to add the corresponding entry to the devo-support entry (or whatever) in
30 ########################
34 # Each directory to survive its way into a release will need a file
35 # like this one called "./.Sanitize". All keyword lines must exist,
36 # and must exist in the order specified by this file. Each directory
37 # in the tree will be processed, top down, in the following order.
39 # Hash started lines like this one are comments and will be deleted
40 # before anything else is done. Blank lines will also be squashed
43 # The lines between the "Do-first:" line and the "Things-to-keep:"
44 # line are executed as a /bin/sh shell script before anything else is
45 # done in this directory.
49 keep_these_too="${keep_these_too} .cvsignore autoconf automake
51 bfd binutils bison byacc cvs deja-gnu dejagnu diff dosrel dvips
52 emacs emacs19 examples expect fileutils findutils flex
53 gas gawk gcc gdb gdbm gdbtest glob gperf gprof grep grez groff
55 include inet install-sh ispell
56 ld less libg++ libgcc libgloss libiberty libio
57 librx libstdc++ libtool
58 m4 make mkinstalldirs mmalloc move-if-change newlib ncurses opcodes
60 rcs readline sed send-pr shellutils sim tar textutils time
61 texinfo tgas utils uudecode wdiff xiberty
62 configure.bat makeall.bat setup.com makefile.vms winsup
63 mpw-README mpw-configure mpw-config.in mpw-build.in mpw-install
64 ltconfig ltmain.sh missing ylwrap"
66 lose_these_too="${lose_these_too} testsuite"
68 cygnus_files="release release-info build-all.mk test-build.mk CYGNUS COPYING.NEWLIB"
70 if ( echo $* | grep keep\-cygnus > /dev/null) ; then
71 keep_these_too="${keep_these_too} ${cygnus_files}"
73 lose_these_too="${lose_these_too} ${cygnus_files}"
76 gdbtk_files="tcl tk itcl tix libgui"
78 if ( echo $* | grep lose\-gdbtk > /dev/null) ; then
79 lose_these_too="${lose_these_too} ${gdbtk_files}"
80 if [ -n "${verbose}" ] ; then
81 echo Deleting ${gdbtk_files}
84 keep_these_too="${keep_these_too} ${gdbtk_files}"
85 if [ -n "${verbose}" ] ; then
86 echo Keeping ${gdbtk_files}
90 # This is for newlib net releases.
91 newlib_file="COPYING.NEWLIB"
93 if (echo $* | grep keep\-newlib > /dev/null) ; then
94 if (echo $* | grep -v keep\-cygnus > /dev/null) ; then
95 keep_these_too="${keep_these_too} ${newlib_file}"
96 lose_these_too="`echo ${lose_these_too} | sed -e s/${newlib_file}//`"
99 true; # Let keep-cygnus handle it.
102 # IDK releases don't include files which only matter to CDK.
103 inet_files="COPYING.LIB config config-ml.in etc symlink-tree"
105 if (echo $* | grep keep\-inet > /dev/null); then
106 lose_these_too="${lose_these_too} ${inet_files}"
108 keep_these_too="${keep_these_too} ${inet_files}"
111 ide_files="libide vmake jstools"
113 if (echo $* | grep keep\-ide > /dev/null); then
114 keep_these_too="${keep_these_too} ${ide_files}"
115 test -n "$verbose" && echo Keeping ${ide_files}
117 lose_these_too="${lose_these_too} ${ide_files}"
121 # This top-level directory is special. We often check out only subsets
122 # of this directory, and complaining about directories or files we didn't
123 # check out just gets obnoxious.
125 list="`(for i in ${keep_these_too}; do echo $i ; done) | sort -u`"
128 for file in $list ; do
129 if [ -r $file ] || [ -d $file ] ; then
130 keep_these_too="${keep_these_too} $file"
134 list="`(for i in ${lose_these_too}; do echo $i ; done) | sort -u` "
137 for file in $list ; do
138 if [ -r $file ] || [ -d $file ] ; then
139 lose_these_too="${lose_these_too} $file"
143 # All files listed between the "Things-to-keep:" line and the
144 # "Do-last:" line will be kept. All other files will be removed.
145 # Directories listed in this section will have their own Sanitize
146 # called. Directories not listed will be removed in their entirety
162 # Not sure we want to include mkdep in releases yet.
165 # The lines between the "Do-last:" line and the end of the file
166 # are executed as a /bin/sh shell script after everything else is
171 # Don't try to clean directories here, as the 'mv' command will fail.
172 # Also, grep fails on NFS mounted directories.
174 if ( echo $* | egrep verbose > /dev/null ) ; then
180 # Remove "sanitize-Sanitize" lines.
181 if [ -n "${verbose}" ] ; then
182 echo Cleaning unconditional sanitizations out of Makefile.in...
185 sed '/start\-sanitize\-Sanitize/,/end-\sanitize\-Sanitize/d' < Makefile.in > new
186 if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
187 mv Makefile.in .Recover
191 if [ -n "${verbose}" ] ; then
192 echo Thawing away the \"chill\"...
195 if ( echo $* | grep keep\-chill > /dev/null ) ; then
197 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
198 if [ -n "${verbose}" ] ; then
199 echo Keeping chill stuff in $i
205 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
206 if [ -n "${verbose}" ] ; then
207 echo Thawing the \"chill\" out of $i...
210 sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
211 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
212 if [ -n "${verbose}" ] ; then
213 echo Caching $i in .Recover...
222 if [ -n "${verbose}" ] ; then
223 echo Processing \"d30v\"...
226 d30v_files="ChangeLog config.sub configure.in"
228 if ( echo $* | grep keep\-d30v > /dev/null ) ; then
229 for i in $d30v_files ; do
230 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
231 if [ -n "${verbose}" ] ; then
232 echo Keeping d30v stuff in $i
238 if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
239 if [ -n "${verbose}" ] ; then
240 echo Removing traces of \"d30v\" from $i...
243 sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/d' < $i > new
244 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
245 if [ -n "${verbose}" ] ; then
246 echo Caching $i in .Recover...
255 if [ -n "${verbose}" ] ; then
256 echo Processing \"v850\"...
259 v850_files="ChangeLog config.sub configure.in"
261 if ( echo $* | grep keep\-v850e > /dev/null ) ; then
262 for i in $v850_files ; do
263 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
264 if [ -n "${verbose}" ] ; then
265 echo Keeping v850e stuff in $i
271 if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then
272 if [ -n "${verbose}" ] ; then
273 echo Removing traces of \"v850e\" from $i...
276 sed '/start\-sanitize\-v850e/,/end-\sanitize\-v850e/d' < $i > new
277 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
278 if [ -n "${verbose}" ] ; then
279 echo Caching $i in .Recover...
288 r5900_files="ChangeLog config.sub configure.in"
290 if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
291 for i in $r5900_files ; do
292 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
293 if [ -n "${verbose}" ] ; then
294 echo Keeping r5900 stuff in $i
300 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
301 if [ -n "${verbose}" ] ; then
302 echo Removing traces of \"r5900\" from $i...
305 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
306 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
307 if [ -n "${verbose}" ] ; then
308 echo Caching $i in .Recover...
317 tx19_files="ChangeLog config.sub"
319 if ( echo $* | grep keep\-tx19 > /dev/null ) ; then
320 for i in $tx19_files ; do
321 if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
322 if [ -n "${verbose}" ] ; then
323 echo Keeping tx19 stuff in $i
329 if test ! -d $i && (grep sanitize-tx19 $i > /dev/null) ; then
330 if [ -n "${verbose}" ] ; then
331 echo Removing traces of \"tx19\" from $i...
334 sed '/start\-sanitize\-tx19/,/end-\sanitize\-tx19/d' < $i > new
335 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
336 if [ -n "${verbose}" ] ; then
337 echo Caching $i in .Recover...
346 tx49_files="ChangeLog config.sub"
348 if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
349 for i in $tx49_files ; do
350 if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
351 if [ -n "${verbose}" ] ; then
352 echo Keeping tx49 stuff in $i
358 if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
359 if [ -n "${verbose}" ] ; then
360 echo Removing traces of \"tx49\" from $i...
363 sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/d' < $i > new
364 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
365 if [ -n "${verbose}" ] ; then
366 echo Caching $i in .Recover...
375 tic80_files="ChangeLog config.sub configure.in"
377 if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
378 for i in $tic80_files ; do
379 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
380 if [ -n "${verbose}" ] ; then
381 echo Keeping tic80 stuff in $i
387 if test ! -d $i && (grep sanitize-tic80 $i > /dev/null) ; then
388 if [ -n "${verbose}" ] ; then
389 echo Removing traces of \"tic80\" from $i...
392 sed '/start\-sanitize\-tic80/,/end-\sanitize\-tic80/d' < $i > new
393 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
394 if [ -n "${verbose}" ] ; then
395 echo Caching $i in .Recover...
404 sky_files="ChangeLog config.sub configure.in"
406 if ( echo $* | grep keep\-sky > /dev/null ) ; then
407 for i in $sky_files ; do
408 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
409 if [ -n "${verbose}" ] ; then
410 echo Keeping sky stuff in $i
416 if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
417 if [ -n "${verbose}" ] ; then
418 echo Removing traces of \"sky\" from $i...
421 sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/d' < $i > new
422 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
423 if [ -n "${verbose}" ] ; then
424 echo Caching $i in .Recover...
433 vr4111_files="ChangeLog config.sub"
435 if ( echo $* | grep keep\-vr4111 > /dev/null ) ; then
436 for i in $vr4111_files ; do
437 if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
438 if [ -n "${verbose}" ] ; then
439 echo Keeping vr4111 stuff in $i
445 if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
446 if [ -n "${verbose}" ] ; then
447 echo Removing traces of \"vr4111\" from $i...
450 sed '/start\-sanitize\-vr4111/,/end-\sanitize\-vr4111/d' < $i > new
451 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
452 if [ -n "${verbose}" ] ; then
453 echo Caching $i in .Recover...
462 if ( echo $* | grep keep\-ide > /dev/null ) ; then
464 if test ! -d $i && (grep sanitize-ide $i > /dev/null) ; then
465 if [ -n "${verbose}" ] ; then
466 echo Keeping ide stuff in $i
472 if test ! -d $i && (grep sanitize-ide $i > /dev/null) ; then
473 if [ -n "${verbose}" ] ; then
474 echo Removing traces of \"ide\" from $i...
477 sed '/start\-sanitize\-ide/,/end-\sanitize\-ide/d' < $i > new
478 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
479 if [ -n "${verbose}" ] ; then
480 echo Caching $i in .Recover...
489 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
490 if [ -n "${verbose}" ] ; then
491 echo Catering to RMS by removing traces of \"gdbtk\"...
494 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
495 if [ -n "${verbose}" ] ; then
496 echo Removing traces of \"gdbtk\" from $i...
499 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
500 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
501 if [ -n "${verbose}" ] ; then
502 echo Caching $i in .Recover...
510 sed -e '/GDBTK_SUPPORT_DIRS=/d' -e 's/ $(GDBTK_SUPPORT_DIRS)//' < Makefile.in > new
511 if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
512 if [ -n "${verbose}" ] ; then
513 echo Caching Makefile.in in .Recover...
515 mv Makefile.in .Recover
519 if [ -n "${verbose}" ] ; then
520 echo Leaving \"gdbtk\" in the sources...
523 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
524 if [ -n "${verbose}" ] ; then
525 echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
528 sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
529 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
530 if [ -n "${verbose}" ] ; then
531 echo Caching $i in .Recover...
540 if ( echo $* | grep lose\-mswin > /dev/null ) ; then
541 if [ -n "${verbose}" ] ; then
542 echo Removing traces of \"mswin\"...
545 if test ! -d $i && (grep sanitize-mswin $i > /dev/null) ; then
546 if [ -n "${verbose}" ] ; then
547 echo Removing traces of \"mswin\" from $i...
550 sed '/start\-sanitize\-mswin/,/end-\sanitize\-mswin/d' < $i > new
551 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
552 if [ -n "${verbose}" ] ; then
553 echo Caching $i in .Recover...
561 if [ -n "${verbose}" ] ; then
562 echo Leaving \"mswin\" in the sources...
565 if test ! -d $i && (grep sanitize-mswin $i > /dev/null) ; then
566 if [ -n "${verbose}" ] ; then
567 echo Keeping \"mswin\" stuff in $i, but editing out sanitize lines...
570 sed -e '/start\-sanitize\-mswin/d' -e '/end\-sanitize\-mswin/d' < $i > new
571 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
572 if [ -n "${verbose}" ] ; then
573 echo Caching $i in .Recover...
582 vr5400_files="ChangeLog config.sub"
584 if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then
585 for i in $vr5400_files ; do
586 if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then
587 if [ -n "${verbose}" ] ; then
588 echo Keeping vr5400 stuff in $i
594 if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then
595 if [ -n "${verbose}" ] ; then
596 echo Removing traces of \"vr5400\" from $i...
599 sed '/start\-sanitize\-vr5400/,/end-\sanitize\-vr5400/d' < $i > new
600 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
601 if [ -n "${verbose}" ] ; then
602 echo Caching $i in .Recover...
611 m32rx_files="ChangeLog config-ml.in"
612 if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
613 for i in $m32rx_files ; do
614 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
615 if [ -n "${verbose}" ] ; then
616 echo Keeping m32rx stuff in $i
622 if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then
623 if [ -n "${verbose}" ] ; then
624 echo Removing traces of \"m32rx\" from $i...
627 sed '/start\-sanitize\-m32rx/,/end-\sanitize\-m32rx/d' < $i > new
628 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
629 if [ -n "${verbose}" ] ; then
630 echo Caching $i in .Recover...
639 # Do this check LAST!
641 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
642 echo '***' Some mentions of Sanitize are still left in $i! 1>&2