Nuke RCS string. Fix comment.
[deliverable/binutils-gdb.git] / gas / testsuite / .Sanitize
1 # Sanitize.in for gas test suite.
2 #
3
4 # Each directory to survive it's way into a release will need a file
5 # like this one called "./.Sanitize". All keyword lines must exist,
6 # and must exist in the order specified by this file. Each directory
7 # in the tree will be processed, top down, in the following order.
8
9 # Hash started lines like this one are comments and will be deleted
10 # before anything else is done. Blank lines will also be squashed
11 # out.
12
13 # The lines between the "Do-first:" line and the "Things-to-keep:"
14 # line are executed as a /bin/sh shell script before anything else is
15 # done in this
16
17 Do-first:
18
19
20 # All files listed between the "Things-to-keep:" line and the
21 # "Files-to-sed:" line will be kept. All other files will be removed.
22 # Directories listed in this section will have their own Sanitize
23 # called. Directories not listed will be removed in their entirety
24 # with rm -rf.
25
26 Things-to-keep:
27
28 ChangeLog
29 Makefile.in
30 config
31 configure.in
32 gas
33 lib
34
35 Things-to-lose:
36
37 gasp
38
39 Do-last:
40
41 # Don't try to clean directories here, as the 'mv' command will fail.
42 # Also, grep fails on NFS mounted directories.
43
44 if [ -n "${verbose}" ] ; then
45 echo Processing \"arc\"...
46 fi
47
48 arc_files="ChangeLog"
49 if ( echo $* | grep keep\-arc > /dev/null ) ; then
50 for i in $arc_files ; do
51 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
52 if [ -n "${verbose}" ] ; then
53 echo Keeping arc stuff in $i
54 fi
55 fi
56 done
57 else
58 for i in $arc_files ; do
59 if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
60 if [ -n "${verbose}" ] ; then
61 echo Removing traces of \"arc\" from $i...
62 fi
63 cp $i new
64 sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/d' < $i > new
65 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
66 if [ -n "${verbose}" ] ; then
67 echo Caching $i in .Recover...
68 fi
69 mv $i .Recover
70 fi
71 mv new $i
72 fi
73 done
74 fi
75
76 # End of file.
This page took 0.045104 seconds and 5 git commands to generate.