]>
Commit | Line | Data |
---|---|---|
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 | |
16 | Do-first: | |
17 | ||
276c2d7d GRK |
18 | if ( echo $* | grep keep\-r5900 > /dev/null ) ; then |
19 | keep_these_too="${keep_these_too} mt-r5900" | |
20 | else | |
21 | lose_these_too="${lose_these_too} mt-r5900" | |
22 | fi | |
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 | ||
30 | Things-to-keep: | |
31 | ||
a19cc981 | 32 | ChangeLog |
70faae66 | 33 | mh-a68bsd |
04947ce1 | 34 | mh-aix386 |
d96234d2 | 35 | mh-apollo68 |
d4e36233 | 36 | mh-cxux |
48240671 | 37 | mh-cygwin32 |
dd1f25e0 | 38 | mh-decstation |
1f2f0a94 SC |
39 | mh-delta88 |
40 | mh-dgux | |
32731d2b | 41 | mh-dgux386 |
eebd76cb | 42 | mh-go32 |
a9cad591 | 43 | mh-hp300 |
1b05371e | 44 | mh-hpux |
3cbb8192 | 45 | mh-hpux8 |
407a8389 | 46 | mh-irix4 |
aab15bdb | 47 | mh-irix5 |
f3eca1ac | 48 | mh-irix6 |
4677e30f | 49 | mh-lynxos |
461004f3 | 50 | mh-lynxrs6k |
0e1ad456 | 51 | mh-m68kpic |
b0680d31 | 52 | mh-ncr3000 |
d376e43b | 53 | mh-ncrsvr43 |
e4115748 | 54 | mh-necv4 |
6764c4cd | 55 | mh-papic |
7bf617cf | 56 | mh-riscos |
77e4df42 | 57 | mh-sco |
4358b911 | 58 | mh-solaris |
6764c4cd | 59 | mh-sparcpic |
97c86946 | 60 | mh-sun3 |
1f2f0a94 | 61 | mh-sysv |
18ab66f2 | 62 | mh-sysv4 |
d3c06c91 | 63 | mh-vaxult2 |
b560034f | 64 | mh-windows |
6764c4cd | 65 | mh-x86pic |
a528763a | 66 | mpw |
3c7c1a88 | 67 | mpw-mh-mpw |
0e1ad456 | 68 | mt-m68kpic |
6764c4cd | 69 | mt-netware |
45329a2c JM |
70 | mt-papic |
71 | mt-sparcpic | |
6764c4cd JM |
72 | mt-v810 |
73 | mt-x86pic | |
0fd8d5d9 | 74 | |
87756e15 RP |
75 | Things-to-lose: |
76 | ||
63e79660 | 77 | Do-last: |
0fd8d5d9 | 78 | |
54d5e0fb AMT |
79 | r5900_files="ChangeLog" |
80 | ||
81 | if ( echo $* | grep keep\-r5900 > /dev/null ) ; then | |
82 | for i in $r5900_files ; do | |
83 | if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then | |
84 | if [ -n "${verbose}" ] ; then | |
85 | echo Keeping r5900 stuff in $i | |
86 | fi | |
87 | fi | |
88 | done | |
89 | else | |
90 | for i in $r5900_files ; do | |
91 | if test ! -d $i && (grep sanitize-r5900 $i > /dev/null) ; then | |
92 | if [ -n "${verbose}" ] ; then | |
93 | echo Removing traces of \"r5900\" from $i... | |
94 | fi | |
95 | cp $i new | |
96 | sed '/start\-sanitize\-r5900/,/end-\sanitize\-r5900/d' < $i > new | |
97 | if [ -n "${safe}" -a ! -f .Recover/$i ] ; then | |
98 | if [ -n "${verbose}" ] ; then | |
99 | echo Caching $i in .Recover... | |
100 | fi | |
101 | mv $i .Recover | |
102 | fi | |
103 | mv new $i | |
104 | fi | |
105 | done | |
106 | fi | |
107 | ||
108 | ||
0fd8d5d9 | 109 | # End of file. |