]>
Commit | Line | Data |
---|---|---|
43e36dd2 | 1 | # .Sanitize for devo. |
a93b3c77 | 2 | |
5db7ecb7 | 3 | # Each directory to survive its way into a release will need a file |
a93b3c77 RP |
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. | |
7 | ||
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 | |
10 | # out. | |
11 | ||
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 | |
43e36dd2 | 14 | # done in this directory. |
a93b3c77 RP |
15 | |
16 | Do-first: | |
17 | ||
1ed0529e | 18 | keep_these_too="${keep_these_too} .cvsignore CYGNUS autoconf |
e03b0bca KR |
19 | bfd binutils byacc cvs deja-gnu dejagnu diff dosrel dvips emacs emacs19 |
20 | examples expect fileutils flex gas gcc gdb gdbm gdbtest glob gprof grep | |
21 | groff include install.sh ispell ld libg++ libgcc libgloss libiberty | |
f38cb096 JM |
22 | libio librx libstdc++ m4 make mmalloc move-if-change newlib opcodes |
23 | pagas patch prms rcs readline sed send-pr shellutils sim tcl textutils | |
24 | tk test-build.mk texinfo tgas utils uudecode wdiff xiberty" | |
e03b0bca | 25 | |
1ed0529e | 26 | cygnus_files="release release-info build-all.mk COPYING.NEWLIB" |
96c805d8 | 27 | |
7d0eab7b | 28 | if ( echo $* | grep keep\-cygnus > /dev/null) ; then |
96c805d8 | 29 | keep_these_too="${keep_these_too} ${cygnus_files}" |
80cad9cc | 30 | else |
96c805d8 | 31 | lose_these_too="${lose_these_too} ${cygnus_files}" |
7d0eab7b DZ |
32 | fi |
33 | ||
eccc57e5 | 34 | mpw_files="mpw-README mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw" |
96c805d8 | 35 | |
5db7ecb7 | 36 | if ( echo $* | grep keep\-mpw > /dev/null) ; then |
96c805d8 | 37 | keep_these_too="${keep_these_too} ${mpw_files}" |
5db7ecb7 | 38 | else |
96c805d8 | 39 | lose_these_too="${lose_these_too} ${mpw_files}" |
5db7ecb7 | 40 | fi |
7d0eab7b | 41 | |
e03b0bca KR |
42 | # This top-level directory is special. We often check out only subsets |
43 | # of this directory, and complaining about directories or files we didn't | |
44 | # check out just gets obnoxious. | |
45 | ||
46 | list="${keep_these_too}" | |
47 | keep_these_too= | |
48 | ||
49 | for file in $list ; do | |
50 | if [ -r $file ] || [ -d $file ] ; then | |
51 | keep_these_too="${keep_these_too} $file" | |
52 | fi | |
53 | done | |
54 | ||
55 | list="${lose_these_too}" | |
56 | lose_these_too= | |
57 | ||
58 | for file in $list ; do | |
59 | if [ -r $file ] || [ -d $file ] ; then | |
60 | lose_these_too="${lose_these_too} $file" | |
61 | fi | |
62 | done | |
63 | ||
a93b3c77 | 64 | # All files listed between the "Things-to-keep:" line and the |
43e36dd2 | 65 | # "Do-last:" line will be kept. All other files will be removed. |
a93b3c77 RP |
66 | # Directories listed in this section will have their own Sanitize |
67 | # called. Directories not listed will be removed in their entirety | |
68 | # with rm -rf. | |
69 | ||
70 | Things-to-keep: | |
71 | ||
6e37b215 PB |
72 | COPYING |
73 | COPYING.LIB | |
57d32184 | 74 | ChangeLog |
a93b3c77 | 75 | Makefile.in |
965a9f14 | 76 | README |
a93b3c77 | 77 | config |
5cc24596 | 78 | config.guess |
db2de419 | 79 | config.sub |
a93b3c77 RP |
80 | configure |
81 | configure.in | |
701df845 | 82 | etc |
16004cc8 KR |
83 | configure.bat |
84 | makeall.bat | |
a93b3c77 | 85 | |
87756e15 RP |
86 | Things-to-lose: |
87 | ||
43e36dd2 RP |
88 | # The lines between the "Do-last:" line and the end of the file |
89 | # are executed as a /bin/sh shell script after everything else is | |
90 | # done. | |
91 | ||
a93b3c77 RP |
92 | Do-last: |
93 | ||
7b85349f RP |
94 | if ( echo $* | egrep verbose > /dev/null ) ; then |
95 | verbose=true | |
96 | else | |
97 | verbose= | |
98 | fi | |
99 | ||
eecef7ef FF |
100 | # Remove "sanitize-Sanitize" lines. |
101 | if [ -n "${verbose}" ] ; then | |
102 | echo Cleaning unconditional sanitizations out of Makefile.in... | |
103 | fi | |
104 | cp Makefile.in new | |
105 | sed '/start\-sanitize\-Sanitize/,/end-\sanitize\-Sanitize/d' < Makefile.in > new | |
106 | if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then | |
107 | mv Makefile.in .Recover | |
108 | fi | |
109 | mv new Makefile.in | |
110 | ||
7b85349f RP |
111 | if [ -n "${verbose}" ] ; then |
112 | echo Thawing away the \"chill\"... | |
113 | fi | |
5d4ec851 FF |
114 | |
115 | # Don't try to clean directories here, as the 'mv' command will fail. | |
116 | # Also, grep fails on NFS mounted directories. | |
117 | if ( echo $* | grep keep\-chill > /dev/null ) ; then | |
118 | for i in * ; do | |
119 | if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then | |
7b85349f RP |
120 | if [ -n "${verbose}" ] ; then |
121 | echo Keeping chill stuff in $i | |
122 | fi | |
5d4ec851 FF |
123 | fi |
124 | done | |
125 | else | |
126 | for i in * ; do | |
127 | if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then | |
7b85349f RP |
128 | if [ -n "${verbose}" ] ; then |
129 | echo Thawing the \"chill\" out of $i... | |
130 | fi | |
5d4ec851 FF |
131 | cp $i new |
132 | sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new | |
133 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
7b85349f RP |
134 | if [ -n "${verbose}" ] ; then |
135 | echo Caching $i in .Recover... | |
136 | fi | |
5d4ec851 FF |
137 | mv $i .Recover |
138 | fi | |
139 | mv new $i | |
140 | fi | |
141 | done | |
5d4ec851 FF |
142 | fi |
143 | ||
5db7ecb7 SS |
144 | if [ -n "${verbose}" ] ; then |
145 | echo Removing traces of \"mpw\"... | |
146 | fi | |
147 | ||
148 | # Don't try to clean directories here, as the 'mv' command will fail. | |
149 | # Also, grep fails on NFS mounted directories. | |
150 | if ( echo $* | grep keep\-mpw > /dev/null ) ; then | |
151 | for i in * ; do | |
152 | if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then | |
153 | if [ -n "${verbose}" ] ; then | |
154 | echo Keeping mpw stuff in $i | |
155 | fi | |
156 | fi | |
157 | done | |
158 | else | |
159 | for i in * ; do | |
160 | if test ! -d $i && (grep sanitize-mpw $i > /dev/null) ; then | |
161 | if [ -n "${verbose}" ] ; then | |
162 | echo Removing traces of \"mpw\" from $i... | |
163 | fi | |
164 | cp $i new | |
165 | sed '/start\-sanitize\-mpw/,/end-\sanitize\-mpw/d' < $i > new | |
166 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
167 | if [ -n "${verbose}" ] ; then | |
168 | echo Caching $i in .Recover... | |
169 | fi | |
170 | mv $i .Recover | |
171 | fi | |
172 | mv new $i | |
173 | fi | |
174 | done | |
175 | fi | |
176 | ||
86118528 KR |
177 | if [ -n "${verbose}" ] ; then |
178 | echo Processing \"arc\"... | |
179 | fi | |
180 | ||
181 | # Don't try to clean directories here, as the 'mv' command will fail. | |
182 | # Also, grep fails on NFS mounted directories. | |
183 | if ( echo $* | grep keep\-arc > /dev/null ) ; then | |
184 | for i in * ; do | |
185 | if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then | |
186 | if [ -n "${verbose}" ] ; then | |
187 | echo Keeping arc stuff in $i | |
188 | fi | |
189 | fi | |
190 | done | |
191 | else | |
192 | for i in * ; do | |
193 | if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then | |
194 | if [ -n "${verbose}" ] ; then | |
195 | echo Removing traces of \"arc\" from $i... | |
196 | fi | |
197 | cp $i new | |
198 | sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new | |
199 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
200 | if [ -n "${verbose}" ] ; then | |
201 | echo Caching $i in .Recover... | |
202 | fi | |
203 | mv $i .Recover | |
204 | fi | |
205 | mv new $i | |
206 | fi | |
207 | done | |
208 | fi | |
209 | ||
5c680afd MT |
210 | r16_files = "config.sub" |
211 | ||
212 | if ( echo $* | grep keep\-r16 > /dev/null ) ; then | |
213 | for i in r16_files ; do | |
214 | if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then | |
215 | if [ -n "${verbose}" ] ; then | |
216 | echo Keeping r16 stuff in $i | |
217 | fi | |
218 | fi | |
219 | done | |
220 | else | |
221 | for i in r16_files ; do | |
222 | if test ! -d $i && (grep sanitize-r16 $i > /dev/null) ; then | |
223 | if [ -n "${verbose}" ] ; then | |
224 | echo Removing traces of \"r16\" from $i... | |
225 | fi | |
226 | cp $i new | |
227 | sed '/start\-sanitize\-r16/,/end-\sanitize\-r16/d' < $i > new | |
228 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
229 | if [ -n "${verbose}" ] ; then | |
230 | echo Caching $i in .Recover... | |
231 | fi | |
232 | mv $i .Recover | |
233 | fi | |
234 | mv new $i | |
235 | fi | |
236 | done | |
237 | fi | |
238 | ||
e11b54be PB |
239 | for i in * ; do |
240 | if test ! -d $i && (grep sanitize $i > /dev/null) ; then | |
7b85349f | 241 | echo '***' Some mentions of Sanitize are still left in $i! 1>&2 |
e11b54be PB |
242 | fi |
243 | done | |
57d32184 RP |
244 | |
245 | # eof |