aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>1998-12-15 01:11:11 +0000
committerDoug Evans <dje@google.com>1998-12-15 01:11:11 +0000
commit15ae9722402464e84c22a97ce5eea7667a3143c2 (patch)
treec5633958f0d135ccaf4a65c2bf1ede653793ba03 /binutils
parentdebeb164c8ffedb50ccefbce6047165760d59558 (diff)
downloadfsf-binutils-gdb-15ae9722402464e84c22a97ce5eea7667a3143c2.zip
fsf-binutils-gdb-15ae9722402464e84c22a97ce5eea7667a3143c2.tar.gz
fsf-binutils-gdb-15ae9722402464e84c22a97ce5eea7667a3143c2.tar.bz2
sanitize sky stuff
Diffstat (limited to 'binutils')
-rw-r--r--binutils/.Sanitize35
1 files changed, 35 insertions, 0 deletions
diff --git a/binutils/.Sanitize b/binutils/.Sanitize
index 7d34712..87b3465 100644
--- a/binutils/.Sanitize
+++ b/binutils/.Sanitize
@@ -15,6 +15,13 @@
Do-first:
+sky_files="link.c.in"
+
+if ( echo $* | grep keep\-sky > /dev/null ) ; then
+ keep_these_too="${sky_files} ${keep_these_too}"
+else
+ lose_these_too="${sky_files} ${lose_these_too}"
+fi
# All files listed between the "Things-to-keep:" line and the
# "Do-last:" line will be kept. All other files will be removed.
@@ -185,6 +192,34 @@ else
done
fi
+sky_files="ChangeLog Makefile.in Makefile.am configure.in configure"
+if ( echo $* | grep keep\-sky > /dev/null ) ; then
+ for i in $sky_files ; do
+ if test ! -d $i && (grep 'sanitize[-_]sky' $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping sky stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $sky_files ; do
+ if test ! -d $i && (grep 'sanitize[-_]sky' $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"sky\" from $i...
+ fi
+ cp $i new
+ sed '/start[-_]sanitize[-_]sky/,/end[-_]sanitize[-_]sky/d' < $i > new
+ if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+ if [ -n "${verbose}" ] ; then
+ echo Caching $i in .Recover...
+ fi
+ mv $i .Recover
+ fi
+ mv new $i
+ fi
+ done
+fi
+
# This must come after all other sanitizations. Re-sanitize the .pot
# file.
if [ -n "${verbose}" ]; then