diff options
author | Nick Clifton <nickc@redhat.com> | 1998-08-04 21:18:41 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1998-08-04 21:18:41 +0000 |
commit | 43607f2c1ee6563387bf1f23ea0ff2a153d94cfe (patch) | |
tree | e3a0013d9399c481452dc52c9daa6023a3e5b69f /ld | |
parent | 05ee9089de6345f1ae57e6841eb524e8fc9fe7ff (diff) | |
download | gdb-43607f2c1ee6563387bf1f23ea0ff2a153d94cfe.zip gdb-43607f2c1ee6563387bf1f23ea0ff2a153d94cfe.tar.gz gdb-43607f2c1ee6563387bf1f23ea0ff2a153d94cfe.tar.bz2 |
oops - move armelf sanitization before check for remaining sanitize
Diffstat (limited to 'ld')
-rw-r--r-- | ld/.Sanitize | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ld/.Sanitize b/ld/.Sanitize index 20f7df0..205dfb3 100644 --- a/ld/.Sanitize +++ b/ld/.Sanitize @@ -293,12 +293,6 @@ else 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 - fi -done - armelf_files="ChangeLog configure.tgt" if ( echo $* | grep keep\-armelf > /dev/null ) ; then for i in $armelf_files ; do @@ -327,6 +321,12 @@ else 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 + fi +done + # This must come after all other sanitizations. Re-sanitize the .pot # file. if [ -n "${verbose}" ]; then |