]> Git Repo - binutils.git/blame - .Sanitize
Changed RUNTESTFLAGS to RUNTEST_FLAGS
[binutils.git] / .Sanitize
CommitLineData
43e36dd2 1# .Sanitize for devo.
a93b3c77
RP
2
3# Each directory to survive it's 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.
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
16Do-first:
17
5d4ec851 18if ( echo $* | grep keep\-chill > /dev/null ) ; then
e90de1f5 19 keep_these_too="chillrt test-chill"
80cad9cc
FF
20else
21 lose_these_too="chillrt test-chill"
5d4ec851
FF
22fi
23
7d0eab7b 24if ( echo $* | grep keep\-cygnus > /dev/null) ; then
d19050d4 25 keep_these_too="${keep_these_too} release release-info build-all.mk"
80cad9cc 26else
d19050d4 27 lose_these_too="${lose_these_too} release release-info build-all.mk"
7d0eab7b
DZ
28fi
29
30
a93b3c77 31# All files listed between the "Things-to-keep:" line and the
43e36dd2 32# "Do-last:" line will be kept. All other files will be removed.
a93b3c77
RP
33# Directories listed in this section will have their own Sanitize
34# called. Directories not listed will be removed in their entirety
35# with rm -rf.
36
37Things-to-keep:
38
c9b36b5f 39.cvsignore
6e37b215
PB
40COPYING
41COPYING.LIB
6227a92b 42CYGNUS
57d32184 43ChangeLog
a93b3c77 44Makefile.in
965a9f14 45README
28f760d3 46autoconf
d5eb68fa 47bfd
ebec4684 48binutils
6a2d7603 49byacc
a93b3c77 50config
5cc24596 51config.guess
db2de419 52config.sub
a93b3c77 53configure
e72c4b3a 54configure.bat
a93b3c77 55configure.in
cdabe523 56cvs
8ec1b2a1 57deja-gnu
d623fd7e 58dejagnu
5781b1ba 59diff
4e0c2de7 60dvips
cdabe523 61emacs
701df845 62etc
17519312 63expect
4e0c2de7 64fileutils
49df2308 65flex
a93b3c77 66gas
ebec4684
RP
67gcc
68gdb
f3d3d2cd 69gdbm
e72c4b3a 70gdbtest
f7f4df6a 71glob
9a14a29d 72gprof
5781b1ba 73grep
4e0c2de7 74groff
a93b3c77 75include
4a01dc52 76install.sh
2dbd15d2 77ispell
ebec4684 78ld
0862386b 79libg++
e72c4b3a
RP
80libgcc
81libiberty
7c4dd2c8 82libio
4e0c2de7 83m4
cdabe523 84make
d592622a 85mmalloc
e72c4b3a 86move-if-change
6ae8fff5 87newlib
aa06ff7e 88opcodes
57d32184 89patch
d42563da 90prms
3c8735af 91rcs
a93b3c77 92readline
4e0c2de7 93sed
00d8b290 94send-pr
4e0c2de7 95shellutils
da7e4b5c 96sim
17519312 97tcl
4e0c2de7
DZ
98textutils
99tk
c9b36b5f 100test-build.mk
d239963b 101texinfo
14bed8ee 102tgas
fa64be8d 103uudecode
4e0c2de7
DZ
104wdiff
105xiberty
a93b3c77 106
87756e15
RP
107Things-to-lose:
108
43e36dd2
RP
109# The lines between the "Do-last:" line and the end of the file
110# are executed as a /bin/sh shell script after everything else is
111# done.
112
a93b3c77
RP
113Do-last:
114
7b85349f
RP
115if ( echo $* | egrep verbose > /dev/null ) ; then
116 verbose=true
117else
118 verbose=
119fi
120
121if [ -n "${verbose}" ] ; then
122 echo Looking for signs of \"v9\"...
123fi
eebff21c
JG
124
125# Don't try to clean directories here, as the 'mv' command will fail.
126# Also, grep fails on NFS mounted directories.
127if ( echo $* | grep keep\-v9 > /dev/null ) ; then
128 for i in * ; do
129 if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
7b85349f
RP
130 if [ -n "${verbose}" ] ; then
131 echo Keeping v9 stuff in $i
132 fi
eebff21c
JG
133 fi
134 done
135else
136 for i in * ; do
137 if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
7b85349f
RP
138 if [ -n "${verbose}" ] ; then
139 echo Cleaning the \"v9\" out of $i...
140 fi
e00efef1 141 cp $i new
eebff21c
JG
142 sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new
143 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
144 mv $i .Recover
145 fi
146 mv new $i
eebff21c
JG
147 fi
148 done
149fi
150
7b85349f
RP
151if [ -n "${verbose}" ] ; then
152 echo Thawing away the \"chill\"...
153fi
5d4ec851
FF
154
155# Don't try to clean directories here, as the 'mv' command will fail.
156# Also, grep fails on NFS mounted directories.
157if ( echo $* | grep keep\-chill > /dev/null ) ; then
158 for i in * ; do
159 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
7b85349f
RP
160 if [ -n "${verbose}" ] ; then
161 echo Keeping chill stuff in $i
162 fi
5d4ec851
FF
163 fi
164 done
165else
166 for i in * ; do
167 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
7b85349f
RP
168 if [ -n "${verbose}" ] ; then
169 echo Thawing the \"chill\" out of $i...
170 fi
5d4ec851
FF
171 cp $i new
172 sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
173 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
7b85349f
RP
174 if [ -n "${verbose}" ] ; then
175 echo Caching $i in .Recover...
176 fi
5d4ec851
FF
177 mv $i .Recover
178 fi
179 mv new $i
180 fi
181 done
5d4ec851
FF
182fi
183
e11b54be
PB
184for i in * ; do
185 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
7b85349f 186 echo '***' Some mentions of Sanitize are still left in $i! 1>&2
e11b54be
PB
187 fi
188done
57d32184
RP
189
190# eof
This page took 0.207098 seconds and 4 git commands to generate.