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 d10v_files="d10v-tdep.c"
34 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
35 keep_these_too="${d10v_files} ${keep_these_too}"
36 if [ -n "${verbose}" ] ; then
37 echo Keeping ${d10v_files}
40 lose_these_too="${d10v_files} ${lose_these_too}"
41 if [ -n "${verbose}" ] ; then
42 echo Deleting ${d10v_files}
46 gdbtk_files="README.GDBTK gdbtk.c gdbtk.tcl"
48 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
49 lose_these_too="${gdbtk_files} ${lose_these_too}"
50 if [ -n "${verbose}" ] ; then
51 echo Deleting ${gdbtk_files}
54 keep_these_too="${gdbtk_files} ${keep_these_too}"
55 if [ -n "${verbose}" ] ; then
56 echo Keeping ${gdbtk_files}
60 # WinGDB files are not really ready to be part of FSF releases, but
61 # keep them for progressives and such.
65 if ( echo $* | grep lose\-mswin > /dev/null ) ; then
66 lose_these_too="${mswin_files} ${lose_these_too}"
67 if [ -n "${verbose}" ] ; then
68 echo Deleting ${mswin_files}
71 keep_these_too="${mswin_files} ${keep_these_too}"
72 if [ -n "${verbose}" ] ; then
73 echo Keeping ${mswin_files}
77 gm_files="gmagic.c gmagic.h"
79 if ( echo $* | grep keep\-gm > /dev/null ) ; then
80 keep_these_too="${gm_files} ${keep_these_too}"
81 if [ -n "${verbose}" ] ; then
82 echo Keeping ${gm_files}
85 lose_these_too="${gm_files} ${lose_these_too}"
86 if [ -n "${verbose}" ] ; then
87 echo Deleting ${gm_files}
91 v850_files="v850ice.c v850-tdep.c"
93 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
94 keep_these_too="${v850_files} ${keep_these_too}"
95 if [ -n "${verbose}" ] ; then
96 echo Keeping ${v850_files}
99 lose_these_too="${v850_files} ${lose_these_too}"
100 if [ -n "${verbose}" ] ; then
101 echo Deleting ${v850_files}
105 m32r_files="m32r-tdep.c m32r-rom.c"
107 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
108 keep_these_too="${m32r_files} ${keep_these_too}"
109 if [ -n "${verbose}" ] ; then
110 echo Keeping ${m32r_files}
113 lose_these_too="${m32r_files} ${lose_these_too}"
114 if [ -n "${verbose}" ] ; then
115 echo Deleting ${m32r_files}
119 # All files listed between the "Things-to-keep:" line and the
120 # "Files-to-sed:" line will be kept. All other files will be removed.
121 # Directories listed in this section will have their own Sanitize
122 # called. Directories not listed will be removed in their entirety
451 # Things which are explicitly *not* kept, for now.
460 # Don't try to clean directories here, as the 'mv' command will fail.
461 # Also, grep fails on NFS mounted directories.
462 if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
463 echo Catering to RMS by removing traces of \"gdbtk\"...
465 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
466 echo Removing traces of \"gdbtk\" out of $i...
468 sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
469 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
470 echo Caching $i in .Recover...
477 echo Leaving \"gdbtk\" in the sources...
479 if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
480 echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
482 sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
483 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
484 echo Caching $i in .Recover...
492 arc_files="configure.tgt ChangeLog-95"
494 if ( echo $* | grep keep\-arc > /dev/null ) ; then
495 for i in $arc_files ; do
496 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
497 if [ -n "${verbose}" ] ; then
498 echo Keeping arc stuff in $i
503 for i in $arc_files ; do
504 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
505 if [ -n "${verbose}" ] ; then
506 echo Removing traces of \"arc\" from $i...
509 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
510 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
511 if [ -n "${verbose}" ] ; then
512 echo Caching $i in .Recover...
521 d10v_files="configure.tgt ChangeLog valops.c"
523 if ( echo $* | grep keep\-d10v > /dev/null ) ; then
524 for i in $d10v_files ; do
525 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
526 if [ -n "${verbose}" ] ; then
527 echo Keeping d10v stuff in $i
532 for i in $d10v_files ; do
533 if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
534 if [ -n "${verbose}" ] ; then
535 echo Removing traces of \"d10v\" from $i...
538 sed '/start\-sanitize\-d10v/,/end-\sanitize\-d10v/d' < $i > new
539 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
540 if [ -n "${verbose}" ] ; then
541 echo Caching $i in .Recover...
550 if ( echo $* | grep keep\-gm > /dev/null ) ; then
552 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
553 if [ -n "${verbose}" ] ; then
554 echo Keeping gm stuff in $i
560 if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
561 if [ -n "${verbose}" ] ; then
562 echo Removing traces of \"gm\" from $i...
565 sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new
566 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
567 if [ -n "${verbose}" ] ; then
568 echo Caching $i in .Recover...
577 if ( echo $* | grep keep\-v850 > /dev/null ) ; then
579 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
580 if [ -n "${verbose}" ] ; then
581 echo Keeping v850 stuff in $i
587 if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
588 if [ -n "${verbose}" ] ; then
589 echo Removing traces of \"v850\" from $i...
592 sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/d' < $i > new
593 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
594 if [ -n "${verbose}" ] ; then
595 echo Caching $i in .Recover...
604 if ( echo $* | grep keep\-m32r > /dev/null ) ; then
606 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
607 if [ -n "${verbose}" ] ; then
608 echo Keeping m32r stuff in $i
614 if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
615 if [ -n "${verbose}" ] ; then
616 echo Removing traces of \"m32r\" from $i...
619 sed '/start\-sanitize\-m32r/,/end-\sanitize\-m32r/d' < $i > new
620 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
621 if [ -n "${verbose}" ] ; then
622 echo Caching $i in .Recover...
632 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
633 echo '***' Some mentions of Sanitize are still left in $i! 1>&2