aboutsummaryrefslogtreecommitdiff
path: root/gas/.Sanitize
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1996-07-05 18:39:32 +0000
committerJeff Law <law@redhat.com>1996-07-05 18:39:32 +0000
commitd78f416f848b9d81721a3e642f06c98036a28ecf (patch)
treec46f371cd81893fca2ccae8030c48e3f91d68c1d /gas/.Sanitize
parent34255b708c6e329996ff9feff08f4eac4cbb6370 (diff)
downloadgdb-d78f416f848b9d81721a3e642f06c98036a28ecf.zip
gdb-d78f416f848b9d81721a3e642f06c98036a28ecf.tar.gz
gdb-d78f416f848b9d81721a3e642f06c98036a28ecf.tar.bz2
No longer sanitize away h8s stuff
Diffstat (limited to 'gas/.Sanitize')
-rw-r--r--gas/.Sanitize28
1 files changed, 0 insertions, 28 deletions
diff --git a/gas/.Sanitize b/gas/.Sanitize
index 4df4e45..77cf3d0 100644
--- a/gas/.Sanitize
+++ b/gas/.Sanitize
@@ -160,34 +160,6 @@ else
fi
-h8s_files="ChangeLog"
-if ( echo $* | grep keep\-h8s > /dev/null ) ; then
- for i in $h8s_files ; do
- if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then
- if [ -n "${verbose}" ] ; then
- echo Keeping h8s stuff in $i
- fi
- fi
- done
-else
- for i in $h8s_files ; do
- if test ! -d $i && (grep sanitize-h8s $i > /dev/null) ; then
- if [ -n "${verbose}" ] ; then
- echo Removing traces of \"h8s\" from $i...
- fi
- cp $i new
- sed '/start\-sanitize\-h8s/,/end-\sanitize\-h8s/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
-
for i in * ; do
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
echo '***' Some mentions of Sanitize are still left in $i! 1>&2