Use struct bfd_seclet * rather than bfd_seclet_type in prototypes to
[deliverable/binutils-gdb.git] / .Sanitize
... / ...
CommitLineData
1# .Sanitize for devo.
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
14# done in this directory.
15
16Do-first:
17
18if ( echo $* | grep keep\-chill > /dev/null ) ; then
19 keep_these_too="chillrt"
20fi
21
22# All files listed between the "Things-to-keep:" line and the
23# "Do-last:" line will be kept. All other files will be removed.
24# Directories listed in this section will have their own Sanitize
25# called. Directories not listed will be removed in their entirety
26# with rm -rf.
27
28Things-to-keep:
29
30.cvsignore
31COPYING
32COPYING.LIB
33CYGNUS
34ChangeLog
35Makefile.in
36README
37autoconf
38bfd
39binutils
40build-all.mk
41byacc
42config
43config.sub
44configure
45configure.bat
46configure.in
47cvs
48deja-gnu
49diff
50dvips
51emacs
52etc
53expect
54fileutils
55flex
56gas
57gcc
58gdb
59gdbm
60gdbtest
61glob
62gprof
63grep
64groff
65h8300sim
66include
67ispell
68ld
69libg++
70libgcc
71libiberty
72m4
73make
74mmalloc
75move-if-change
76newlib
77opcodes
78patch
79prms
80rcs
81readline
82sed
83send_pr
84shellutils
85tcl
86textutils
87tk
88test-build.mk
89texinfo
90tgas
91wdiff
92xiberty
93z8ksim
94
95# The lines between the "Do-last:" line and the end of the file
96# are executed as a /bin/sh shell script after everything else is
97# done.
98
99Do-last:
100
101echo Looking for signs of \"v9\"...
102
103# Don't try to clean directories here, as the 'mv' command will fail.
104# Also, grep fails on NFS mounted directories.
105if ( echo $* | grep keep\-v9 > /dev/null ) ; then
106 for i in * ; do
107 if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
108 echo Keeping v9 stuff in $i
109 fi
110 done
111else
112 for i in * ; do
113 if test ! -d $i && (grep sanitize-v9 $i > /dev/null) ; then
114 echo Cleaning the \"v9\" out of $i...
115 cp $i new
116 sed '/start\-sanitize\-v9/,/end-\sanitize\-v9/d' < $i > new
117 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
118 mv $i .Recover
119 fi
120 mv new $i
121 fi
122 done
123fi
124
125echo Thawing away the \"chill\"...
126
127# Don't try to clean directories here, as the 'mv' command will fail.
128# Also, grep fails on NFS mounted directories.
129if ( echo $* | grep keep\-chill > /dev/null ) ; then
130 for i in * ; do
131 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
132 echo Keeping chill stuff in $i
133 fi
134 done
135else
136 for i in * ; do
137 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
138 echo Thawing the \"chill\" out of $i...
139 cp $i new
140 sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
141 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
142 echo Caching $i in .Recover...
143 mv $i .Recover
144 fi
145 mv new $i
146 fi
147 done
148fi
149
150for i in * ; do
151 if test ! -d $i && (grep sanitize $i > /dev/null) ; then
152 echo Some mentions of Sanitize are still left in $i!
153 fi
154done
155
156# eof
This page took 0.022983 seconds and 4 git commands to generate.