* Redid configuration scheme. Removed gdb.t*/configure.in.
[deliverable/binutils-gdb.git] / gdb / testsuite / config / .Sanitize
CommitLineData
bf3d2b75
MW
1# .Sanitize for deja-gnu.
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=""
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
30aout-gdb.exp
31coff-gdb.exp
32udi-gdb.exp
33unix-gdb.exp
34vx-gdb.exp
35
36# The lines between the "Do-last:" line and the end of the file
37# are executed as a /bin/sh shell script after everything else is
38# done.
39
40Do-last:
41echo Thawing away the \"chill\"...
42
43# Don't try to clean directories here, as the 'mv' command will fail.
44# Also, grep fails on NFS mounted directories.
45if ( echo $* | grep keep\-chill > /dev/null ) ; then
46 for i in * ; do
47 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
48 echo Keeping chill stuff in $i
49 fi
50 done
51else
52 for i in * ; do
53 if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
54 echo Thawing the \"chill\" out of $i...
55 cp $i new
56 sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/d' < $i > new
57 if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
58 echo Caching $i in .Recover...
59 mv $i .Recover
60 fi
61 mv new $i
62 fi
63 done
64 echo Thawing the \"chill\" out of mt-unix...
65 cp mt-unix new
66 sed -e '
67 /CHILL =/d
68 /CHILLFLAGS =/d
69 ' < mt-unix > new
70 if [ -n "${safe}" -a ! -f .Recover/mt-unix ] ; then
71 echo Caching mt-unix in .Recover...
72 mv mt-unix .Recover
73 fi
74 mv new mt-unix
75fi
76
77# eof
This page took 0.025288 seconds and 4 git commands to generate.