1 # .Sanitize for devo/gdb.
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 arc_files="arc-tdep.c remote-arc.c"
20 if ( echo $* | grep keep\-arc > /dev/null ) ; then
21 keep_these_too="${arc_files} ${keep_these_too}"
22 if [ -n "${verbose}" ] ; then
23 echo Keeping ${arc_files}
26 lose_these_too="${arc_files} ${lose_these_too}"
27 if [ -n "${verbose}" ] ; then
28 echo Deleting ${arc_files}
32 gdbtk_files="README.GDBTK gdbtk.c gdbtk.tcl"
34 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
35 lose_these_too="${gdbtk_files} ${lose_these_too}"
36 if [ -n "${verbose}" ] ; then
37 echo Deleting ${gdbtk_files}
40 keep_these_too="${gdbtk_files} ${keep_these_too}"
41 if [ -n "${verbose}" ] ; then
42 echo Keeping ${gdbtk_files}
46 # WinGDB files are not really ready to be part of FSF releases, but
47 # keep them for progressives and such.
51 if ( echo $* | grep lose\-mswin > /dev/null ) ; then
52 lose_these_too="${mswin_files} ${lose_these_too}"
53 if [ -n "${verbose}" ] ; then
54 echo Deleting ${mswin_files}
57 keep_these_too="${mswin_files} ${keep_these_too}"
58 if [ -n "${verbose}" ] ; then
59 echo Keeping ${mswin_files}
63 gm_files="gmagic.c gmagic.h"
65 if ( echo $* | grep keep\-gm > /dev/null ) ; then
66 keep_these_too="${gm_files} ${keep_these_too}"
67 if [ -n "${verbose}" ] ; then
68 echo Keeping ${gm_files}
71 lose_these_too="${gm_files} ${lose_these_too}"
72 if [ -n "${verbose}" ] ; then
73 echo Deleting ${gm_files}
77 # All files listed between the "Things-to-keep:" line and the
78 # "Files-to-sed:" line will be kept. All other files will be removed.
79 # Directories listed in this section will have their own Sanitize
80 # called. Directories not listed will be removed in their entirety
382 # Things which are explicitly *not* kept, for now.
391 # Don't try to clean directories here, as the 'mv' command will fail.
392 # Also, grep fails on NFS mounted directories.
393 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
394 echo Catering to RMS by removing traces of \"gdbtk\"...
396 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
397 echo Removing traces of \"gdbtk\" out of $i...
399 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
400 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
401 echo Caching $i in .Recover...
408 echo Leaving \"gdbtk\" in the sources...
410 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
411 echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
413 sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
414 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
415 echo Caching $i in .Recover...
423 r16_files="configure.in configure"
425 if ( echo $* | grep keep\-r16 > /dev/null ) ; then
426 for i in $r16_files ; do
427 if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
428 if [ -n "${verbose}" ] ; then
429 echo Keeping r16 stuff in $i
434 for i in $r16_files ; do
435 if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then
436 if [ -n "${verbose}" ] ; then
437 echo Removing traces of \"r16\" from $i...
440 sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new
441 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
442 if [ -n "${verbose}" ] ; then
443 echo Caching $i in .Recover...
452 arc_files="configure.in configure ChangeLog"
454 if ( echo $* | grep keep\-arc > /dev/null ) ; then
455 for i in $arc_files ; do
456 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
457 if [ -n "${verbose}" ] ; then
458 echo Keeping arc stuff in $i
463 for i in $arc_files ; do
464 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
465 if [ -n "${verbose}" ] ; then
466 echo Removing traces of \"arc\" from $i...
469 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
470 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
471 if [ -n "${verbose}" ] ; then
472 echo Caching $i in .Recover...
481 if ( echo $* | grep keep\-gm > /dev/null ) ; then
483 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
484 if [ -n "${verbose}" ] ; then
485 echo Keeping gm stuff in $i
491 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
492 if [ -n "${verbose}" ] ; then
493 echo Removing traces of \"gm\" from $i...
496 sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new
497 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
498 if [ -n "${verbose}" ] ; then
499 echo Caching $i in .Recover...
509 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
510 echo '***' Some mentions of Sanitize are still left in $i! 1>&2