]>
Commit | Line | Data |
---|---|---|
694ea471 | 1 | ######################## |
3a58da89 KR |
2 | # |
3 | # H H EEEEEE Y Y !! | |
4 | # H H E Y Y !! | |
5 | # H H E Y Y !! | |
6 | # H H E Y !! | |
7 | # HHHHHH EEEEE Y !! | |
8 | # H H E Y !! | |
9 | # H H E Y !! | |
10 | # H H E Y | |
11 | # H H EEEEEE Y !! | |
12 | # | |
694ea471 KR |
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. | |
20 | # | |
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. | |
9719168f DE |
25 | # |
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 | |
28 | # the modules file. | |
29 | # | |
694ea471 KR |
30 | ######################## |
31 | ||
3a58da89 KR |
32 | # .Sanitize for devo. |
33 | ||
5db7ecb7 | 34 | # Each directory to survive its way into a release will need a file |
a93b3c77 RP |
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. | |
38 | ||
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 | |
41 | # out. | |
42 | ||
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 | |
43e36dd2 | 45 | # done in this directory. |
a93b3c77 RP |
46 | |
47 | Do-first: | |
48 | ||
1ed0529e | 49 | keep_these_too="${keep_these_too} .cvsignore CYGNUS autoconf |
e03b0bca | 50 | bfd binutils byacc cvs deja-gnu dejagnu diff dosrel dvips emacs emacs19 |
0cf78faa SS |
51 | examples expect fileutils flex |
52 | gas gcc gdb gdbm gdbtest glob gprof grep grez groff | |
53 | include install.sh ispell | |
54 | ld libg++ libgcc libgloss libiberty libio librx libstdc++ | |
55 | m4 make mmalloc move-if-change newlib opcodes | |
85f903e9 FF |
56 | pagas patch prms rcs readline sed send-pr shellutils sim textutils |
57 | texinfo tgas utils uudecode wdiff xiberty | |
efd7b806 | 58 | configure.bat makeall.bat winsup |
5f917df1 | 59 | guile perl |
694ea471 KR |
60 | mpw-README mpw-configure mpw-config.in mpw-build.in" |
61 | ||
62 | lose_these_too="${lose_these_too} testsuite" | |
e03b0bca | 63 | |
2822305b | 64 | cygnus_files="release release-info build-all.mk test-build.mk COPYING.NEWLIB" |
96c805d8 | 65 | |
7d0eab7b | 66 | if ( echo $* | grep keep\-cygnus > /dev/null) ; then |
96c805d8 | 67 | keep_these_too="${keep_these_too} ${cygnus_files}" |
80cad9cc | 68 | else |
96c805d8 | 69 | lose_these_too="${lose_these_too} ${cygnus_files}" |
7d0eab7b DZ |
70 | fi |
71 | ||
fc5a05e9 SS |
72 | gdbtk_files="tcl tk" |
73 | ||
74 | if ( echo $* | grep lose\-gdbtk > /dev/null) ; then | |
75 | lose_these_too="${lose_these_too} ${gdbtk_files}" | |
76 | if [ -n "${verbose}" ] ; then | |
77 | echo Deleting ${gdbtk_files} | |
78 | fi | |
79 | else | |
80 | keep_these_too="${keep_these_too} ${gdbtk_files}" | |
81 | if [ -n "${verbose}" ] ; then | |
82 | echo Keeping ${gdbtk_files} | |
83 | fi | |
5db7ecb7 | 84 | fi |
7d0eab7b | 85 | |
77cbdd35 | 86 | # This is for newlib net releases. |
c8205c90 | 87 | newlib_file="COPYING.NEWLIB" |
77cbdd35 | 88 | |
c8205c90 DE |
89 | if (echo $* | grep keep\-newlib > /dev/null) ; then |
90 | if (echo $* | grep -v keep\-cygnus > /dev/null) ; then | |
91 | keep_these_too="${keep_these_too} ${newlib_file}" | |
92 | lose_these_too="`echo ${lose_these_too} | sed -e s/${newlib_file}//`" | |
93 | fi | |
77cbdd35 | 94 | else |
c8205c90 | 95 | true; # Let keep-cygnus handle it. |
77cbdd35 DE |
96 | fi |
97 | ||
e03b0bca KR |
98 | # This top-level directory is special. We often check out only subsets |
99 | # of this directory, and complaining about directories or files we didn't | |
100 | # check out just gets obnoxious. | |
101 | ||
694ea471 | 102 | list="`(for i in ${keep_these_too}; do echo $i ; done) | sort -u`" |
e03b0bca KR |
103 | keep_these_too= |
104 | ||
105 | for file in $list ; do | |
106 | if [ -r $file ] || [ -d $file ] ; then | |
107 | keep_these_too="${keep_these_too} $file" | |
108 | fi | |
109 | done | |
110 | ||
694ea471 | 111 | list="`(for i in ${lose_these_too}; do echo $i ; done) | sort -u` " |
e03b0bca KR |
112 | lose_these_too= |
113 | ||
114 | for file in $list ; do | |
115 | if [ -r $file ] || [ -d $file ] ; then | |
116 | lose_these_too="${lose_these_too} $file" | |
117 | fi | |
118 | done | |
119 | ||
a93b3c77 | 120 | # All files listed between the "Things-to-keep:" line and the |
43e36dd2 | 121 | # "Do-last:" line will be kept. All other files will be removed. |
a93b3c77 RP |
122 | # Directories listed in this section will have their own Sanitize |
123 | # called. Directories not listed will be removed in their entirety | |
124 | # with rm -rf. | |
125 | ||
126 | Things-to-keep: | |
127 | ||
6e37b215 PB |
128 | COPYING |
129 | COPYING.LIB | |
57d32184 | 130 | ChangeLog |
a93b3c77 | 131 | Makefile.in |
965a9f14 | 132 | README |
a93b3c77 | 133 | config |
d747cac4 | 134 | config-ml.in |
5cc24596 | 135 | config.guess |
db2de419 | 136 | config.sub |
a93b3c77 RP |
137 | configure |
138 | configure.in | |
701df845 | 139 | etc |
d747cac4 | 140 | symlink-tree |
a93b3c77 | 141 | |
87756e15 RP |
142 | Things-to-lose: |
143 | ||
43e36dd2 RP |
144 | # The lines between the "Do-last:" line and the end of the file |
145 | # are executed as a /bin/sh shell script after everything else is | |
146 | # done. | |
147 | ||
a93b3c77 RP |
148 | Do-last: |
149 | ||
bf150019 DE |
150 | # Don't try to clean directories here, as the 'mv' command will fail. |
151 | # Also, grep fails on NFS mounted directories. | |
152 | ||
7b85349f RP |
153 | if ( echo $* | egrep verbose > /dev/null ) ; then |
154 | verbose=true | |
155 | else | |
156 | verbose= | |
157 | fi | |
158 | ||
eecef7ef FF |
159 | # Remove "sanitize-Sanitize" lines. |
160 | if [ -n "${verbose}" ] ; then | |
161 | echo Cleaning unconditional sanitizations out of Makefile.in... | |
162 | fi | |
163 | cp Makefile.in new | |
164 | sed '/start\-sanitize\-Sanitize/,/end-\sanitize\-Sanitize/d' < Makefile.in > new | |
165 | if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then | |
166 | mv Makefile.in .Recover | |
167 | fi | |
168 | mv new Makefile.in | |
169 | ||
7b85349f RP |
170 | if [ -n "${verbose}" ] ; then |
171 | echo Thawing away the \"chill\"... | |
172 | fi | |
5d4ec851 | 173 | |
5d4ec851 FF |
174 | if ( echo $* | grep keep\-chill > /dev/null ) ; then |
175 | for i in * ; do | |
176 | if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then | |
7b85349f RP |
177 | if [ -n "${verbose}" ] ; then |
178 | echo Keeping chill stuff in $i | |
179 | fi | |
5d4ec851 FF |
180 | fi |
181 | done | |
182 | else | |
183 | for i in * ; do | |
184 | if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then | |
7b85349f RP |
185 | if [ -n "${verbose}" ] ; then |
186 | echo Thawing the \"chill\" out of $i... | |
187 | fi | |
5d4ec851 FF |
188 | cp $i new |
189 | sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new | |
190 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
7b85349f RP |
191 | if [ -n "${verbose}" ] ; then |
192 | echo Caching $i in .Recover... | |
193 | fi | |
5d4ec851 FF |
194 | mv $i .Recover |
195 | fi | |
196 | mv new $i | |
197 | fi | |
198 | done | |
5d4ec851 FF |
199 | fi |
200 | ||
86118528 KR |
201 | if [ -n "${verbose}" ] ; then |
202 | echo Processing \"arc\"... | |
203 | fi | |
204 | ||
a6cb89ff | 205 | arc_files="config.sub configure.in config-ml.in" |
bf150019 | 206 | |
86118528 | 207 | if ( echo $* | grep keep\-arc > /dev/null ) ; then |
bf150019 | 208 | for i in $arc_files ; do |
86118528 KR |
209 | if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then |
210 | if [ -n "${verbose}" ] ; then | |
211 | echo Keeping arc stuff in $i | |
212 | fi | |
213 | fi | |
214 | done | |
215 | else | |
216 | for i in * ; do | |
217 | if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then | |
218 | if [ -n "${verbose}" ] ; then | |
219 | echo Removing traces of \"arc\" from $i... | |
220 | fi | |
221 | cp $i new | |
222 | sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new | |
bf150019 DE |
223 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then |
224 | if [ -n "${verbose}" ] ; then | |
225 | echo Caching $i in .Recover... | |
226 | fi | |
227 | mv $i .Recover | |
228 | fi | |
229 | mv new $i | |
230 | fi | |
231 | done | |
232 | fi | |
233 | ||
03c4ce2f | 234 | rce_files="config.sub" |
5c680afd | 235 | |
03c4ce2f MT |
236 | if ( echo $* | grep keep\-rce > /dev/null ) ; then |
237 | for i in $rce_files ; do | |
238 | if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then | |
5c680afd | 239 | if [ -n "${verbose}" ] ; then |
03c4ce2f | 240 | echo Keeping rce stuff in $i |
5c680afd MT |
241 | fi |
242 | fi | |
243 | done | |
244 | else | |
03c4ce2f MT |
245 | for i in $rce_files ; do |
246 | if test ! -d $i && (grep sanitize-rce $i > /dev/null) ; then | |
5c680afd | 247 | if [ -n "${verbose}" ] ; then |
03c4ce2f | 248 | echo Removing traces of \"rce\" from $i... |
5c680afd MT |
249 | fi |
250 | cp $i new | |
03c4ce2f | 251 | sed '/start\-sanitize\-rce/,/end-\sanitize\-rce/d' < $i > new |
5c680afd MT |
252 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then |
253 | if [ -n "${verbose}" ] ; then | |
254 | echo Caching $i in .Recover... | |
255 | fi | |
256 | mv $i .Recover | |
257 | fi | |
258 | mv new $i | |
259 | fi | |
260 | done | |
261 | fi | |
262 | ||
aa800755 FF |
263 | if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then |
264 | echo Catering to RMS by removing traces of \"gdbtk\"... | |
265 | if [ -n "${verbose}" ] ; then | |
266 | echo Removing traces of \"gdbtk\" from Makefile.in... | |
267 | fi | |
268 | cp Makefile.in new | |
269 | sed -e '/GDBTK_SUPPORT_DIRS=/d' -e 's/ $(GDBTK_SUPPORT_DIRS)//' < Makefile.in > new | |
270 | if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then | |
271 | if [ -n "${verbose}" ] ; then | |
272 | echo Caching Makefile.in in .Recover... | |
273 | fi | |
274 | mv Makefile.in .Recover | |
275 | fi | |
276 | mv new Makefile.in | |
277 | fi | |
278 | ||
2f9bfdfa SG |
279 | if ( echo $* | grep keep\-gm > /dev/null ) ; then |
280 | for i in * ; do | |
281 | if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then | |
282 | if [ -n "${verbose}" ] ; then | |
283 | echo Keeping gm stuff in $i | |
284 | fi | |
285 | fi | |
286 | done | |
287 | else | |
288 | for i in * ; do | |
289 | if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then | |
290 | if [ -n "${verbose}" ] ; then | |
291 | echo Removing traces of \"gm\" from $i... | |
292 | fi | |
293 | cp $i new | |
294 | sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/d' < $i > new | |
295 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
296 | if [ -n "${verbose}" ] ; then | |
297 | echo Caching $i in .Recover... | |
298 | fi | |
299 | mv $i .Recover | |
300 | fi | |
301 | mv new $i | |
302 | fi | |
303 | done | |
304 | fi | |
305 | ||
3b0fb9c9 KR |
306 | # Do this check LAST! |
307 | for i in * ; do | |
308 | if test ! -d $i && (grep sanitize $i > /dev/null) ; then | |
309 | echo '***' Some mentions of Sanitize are still left in $i! 1>&2 | |
310 | exit 1 | |
311 | fi | |
312 | done | |
313 | ||
57d32184 | 314 | # eof |