]>
Commit | Line | Data |
---|---|---|
1 | # .Sanitize for devo. | |
2 | # $Id$ | |
3 | # | |
4 | ||
5 | # Each directory to survive it's way into a release will need a file | |
6 | # like this one called "./.Sanitize". All keyword lines must exist, | |
7 | # and must exist in the order specified by this file. Each directory | |
8 | # in the tree will be processed, top down, in the following order. | |
9 | ||
10 | # Hash started lines like this one are comments and will be deleted | |
11 | # before anything else is done. Blank lines will also be squashed | |
12 | # out. | |
13 | ||
14 | # The lines between the "Do-first:" line and the "Things-to-keep:" | |
15 | # line are executed as a /bin/sh shell script before anything else is | |
16 | # done in this directory. | |
17 | ||
18 | Do-first: | |
19 | ||
20 | # All files listed between the "Things-to-keep:" line and the | |
21 | # "Do-last:" line will be kept. All other files will be removed. | |
22 | # Directories listed in this section will have their own Sanitize | |
23 | # called. Directories not listed will be removed in their entirety | |
24 | # with rm -rf. | |
25 | ||
26 | Things-to-keep: | |
27 | ||
28 | Makefile.in | |
29 | README | |
30 | bison | |
31 | bfd | |
32 | binutils | |
33 | cfg-paper.texi | |
34 | clib | |
35 | config | |
36 | config.sub | |
37 | configdos.bat | |
38 | configure | |
39 | configure.in | |
40 | configure.man | |
41 | configure.texi | |
42 | cvs | |
43 | diff | |
44 | emacs | |
45 | gas | |
46 | gcc | |
47 | gdb | |
48 | gdbm | |
49 | glob | |
50 | gnulib | |
51 | grep | |
52 | include | |
53 | ld | |
54 | libiberty | |
55 | libg++ | |
56 | make | |
57 | prms | |
58 | rcs | |
59 | readline | |
60 | texinfo | |
61 | ||
62 | # The lines between the "Do-last:" line and the end of the file | |
63 | # are executed as a /bin/sh shell script after everything else is | |
64 | # done. | |
65 | ||
66 | Do-last: | |
67 | ||
68 | echo Looking for signs of \"v9\"... | |
69 | ||
70 | # Don't try to clean directories here, as the 'mv' command will fail. | |
71 | # Also, grep fails on NFS mounted directories. | |
72 | if ( echo $* | grep keep\-v9 > /dev/null ) ; then | |
73 | for i in * ; do | |
74 | if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then | |
75 | echo Keeping v9 stuff in $i | |
76 | fi | |
77 | done | |
78 | else | |
79 | for i in * ; do | |
80 | if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then | |
81 | echo Cleaning the \"v9\" out of $i... | |
82 | cp $i new | |
83 | sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new | |
84 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
85 | mv $i .Recover | |
86 | fi | |
87 | mv new $i | |
88 | fi | |
89 | done | |
90 | fi | |
91 | ||
92 | echo Looking for signs of \"life\"... | |
93 | ||
94 | # Don't try to clean directories here, as the 'mv' command will fail. | |
95 | # Also, grep fails on NFS mounted directories. | |
96 | if ( echo $* | grep keep\-life > /dev/null ) ; then | |
97 | for i in * ; do | |
98 | if test ! -d $i && (grep sanitize-life $i > /dev/null) ; then | |
99 | echo Keeping life alive in $i | |
100 | fi | |
101 | done | |
102 | else | |
103 | for i in * ; do | |
104 | if test ! -d $i && (grep sanitize-life $i > /dev/null) ; then | |
105 | echo Beating the \"life\" out of $i... | |
106 | cp $i new | |
107 | sed '/start\-sanitize\-life/,/end-\sanitize\-life/d' < $i > new | |
108 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
109 | mv $i .Recover | |
110 | fi | |
111 | mv new $i | |
112 | fi | |
113 | done | |
114 | fi | |
115 | ||
116 | for i in * ; do | |
117 | if test ! -d $i && (grep sanitize $i > /dev/null) ; then | |
118 | echo Some mentions of Sanitize are still left in $i! | |
119 | fi | |
120 | done |