oops - move armelf sanitization before check for remaining sanitize
This commit is contained in:
parent
05ee9089de
commit
43607f2c1e
1 changed files with 6 additions and 6 deletions
12
ld/.Sanitize
12
ld/.Sanitize
|
@ -293,12 +293,6 @@ else
|
||||||
done
|
done
|
||||||
fi
|
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"
|
armelf_files="ChangeLog configure.tgt"
|
||||||
if ( echo $* | grep keep\-armelf > /dev/null ) ; then
|
if ( echo $* | grep keep\-armelf > /dev/null ) ; then
|
||||||
for i in $armelf_files ; do
|
for i in $armelf_files ; do
|
||||||
|
@ -327,6 +321,12 @@ else
|
||||||
done
|
done
|
||||||
fi
|
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
|
# This must come after all other sanitizations. Re-sanitize the .pot
|
||||||
# file.
|
# file.
|
||||||
if [ -n "${verbose}" ]; then
|
if [ -n "${verbose}" ]; then
|
||||||
|
|
Loading…
Reference in a new issue