Fix v850 sanitization.
[deliverable/binutils-gdb.git] / config / .Sanitize
CommitLineData
3c7c1a88 1# .Sanitize for devo/config.
b6597455
SS
2
3# Each directory to survive its way into a release will need a file
0fd8d5d9
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
b6597455 14# done in this directory.
0fd8d5d9
RP
15
16Do-first:
17
276c2d7d
GRK
18if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
19 keep_these_too="${keep_these_too} mt-r5900"
20else
21 lose_these_too="${lose_these_too} mt-r5900"
22fi
23
0fd8d5d9
RP
24# All files listed between the "Things-to-keep:" line and the
25# "Files-to-sed:" line will be kept. All other files will be removed.
26# Directories listed in this section will have their own Sanitize
27# called. Directories not listed will be removed in their entirety
28# with rm -rf.
29
30Things-to-keep:
31
a19cc981 32ChangeLog
70faae66 33mh-a68bsd
04947ce1 34mh-aix386
d96234d2 35mh-apollo68
d4e36233 36mh-cxux
48240671 37mh-cygwin32
dd1f25e0 38mh-decstation
1f2f0a94
SC
39mh-delta88
40mh-dgux
32731d2b 41mh-dgux386
eebd76cb 42mh-go32
a9cad591 43mh-hp300
1b05371e 44mh-hpux
3cbb8192 45mh-hpux8
407a8389 46mh-irix4
aab15bdb 47mh-irix5
f3eca1ac 48mh-irix6
4677e30f 49mh-lynxos
461004f3 50mh-lynxrs6k
0e1ad456 51mh-m68kpic
b0680d31 52mh-ncr3000
d376e43b 53mh-ncrsvr43
e4115748 54mh-necv4
6764c4cd 55mh-papic
897832ee 56mh-ppcpic
7bf617cf 57mh-riscos
77e4df42 58mh-sco
4358b911 59mh-solaris
6764c4cd 60mh-sparcpic
97c86946 61mh-sun3
1f2f0a94 62mh-sysv
18ab66f2 63mh-sysv4
d3c06c91 64mh-vaxult2
b560034f 65mh-windows
6764c4cd 66mh-x86pic
a528763a 67mpw
3c7c1a88 68mpw-mh-mpw
0e1ad456 69mt-m68kpic
6764c4cd 70mt-netware
45329a2c 71mt-papic
897832ee 72mt-ppcpic
45329a2c 73mt-sparcpic
6764c4cd
JM
74mt-v810
75mt-x86pic
0fd8d5d9 76
87756e15
RP
77Things-to-lose:
78
63e79660 79Do-last:
0fd8d5d9 80
54d5e0fb
AMT
81r5900_files="ChangeLog"
82
83if ( echo $* | grep keep\-r5900 > /dev/null ) ; then
84 for i in $r5900_files ; do
85 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
86 if [ -n "${verbose}" ] ; then
87 echo Keeping r5900 stuff in $i
88 fi
89 fi
90 done
91else
92 for i in $r5900_files ; do
93 if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then
94 if [ -n "${verbose}" ] ; then
95 echo Removing traces of \"r5900\" from $i...
96 fi
97 cp $i new
98 sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new
99 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
100 if [ -n "${verbose}" ] ; then
101 echo Caching $i in .Recover...
102 fi
103 mv $i .Recover
104 fi
105 mv new $i
106 fi
107 done
108fi
109
6cd41c5e
ILT
110cygnus_files="mh-go32"
111
112if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
113 for i in $cygnus_files ; do
114 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
115 if [ -n "${verbose}" ] ; then
116 echo Keeping cygnus stuff in $i
117 fi
118 fi
119 done
120else
121 for i in $cygnus_files ; do
122 if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
123 if [ -n "${verbose}" ] ; then
124 echo Removing traces of \"cygnus\" from $i...
125 fi
126 cp $i new
127 sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new
128 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
129 if [ -n "${verbose}" ] ; then
130 echo Caching $i in .Recover...
131 fi
132 mv $i .Recover
133 fi
134 mv new $i
135 fi
136 done
137fi
54d5e0fb 138
0fd8d5d9 139# End of file.
This page took 0.21811 seconds and 4 git commands to generate.