]>
Commit | Line | Data |
---|---|---|
b6597455 SS |
1 | # .Sanitize for devo/config |
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 | ||
b6597455 SS |
18 | if ( echo $* | grep keep\-mpw > /dev/null) ; then |
19 | keep_these_too="mpw-mh-mpw ChangeLog.mpw ${keep_these_too}" | |
20 | else | |
21 | lose_these_too="mpw-mh-mpw ChangeLog.mpw ${lose_these_too}" | |
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 |
1b05371e | 34 | mh-aix |
04947ce1 | 35 | mh-aix386 |
d96234d2 | 36 | mh-apollo68 |
dd1f25e0 | 37 | mh-decstation |
1f2f0a94 SC |
38 | mh-delta88 |
39 | mh-dgux | |
a9cad591 | 40 | mh-hp300 |
1b05371e | 41 | mh-hpux |
407a8389 | 42 | mh-irix4 |
aab15bdb | 43 | mh-irix5 |
677291b5 | 44 | mh-linux |
4677e30f | 45 | mh-lynxos |
ffcb7f05 | 46 | mh-lynxosrs6k |
b0680d31 | 47 | mh-ncr3000 |
7bf617cf | 48 | mh-riscos |
77e4df42 | 49 | mh-sco |
4358b911 | 50 | mh-solaris |
ef6bfbdb | 51 | mh-sun |
97c86946 | 52 | mh-sun3 |
1f2f0a94 | 53 | mh-sysv |
18ab66f2 | 54 | mh-sysv4 |
d3c06c91 | 55 | mh-vaxult2 |
0fd8d5d9 | 56 | |
87756e15 RP |
57 | Things-to-lose: |
58 | ||
775d4a40 | 59 | |
63e79660 | 60 | Do-last: |
0fd8d5d9 | 61 | |
0fd8d5d9 | 62 | # End of file. |