output textrel information even if textrel=relaxed

This commit is contained in:
Дмитрий Левин 2003-11-23 21:37:36 +00:00
parent df65e04e47
commit bc25638297

View File

@ -84,10 +84,10 @@ for f in "$@"; do
if [ -n "$VERIFY_ELF_TEXTREL" ]; then
textrel=`printf %s "$info" |awk '{if ($1=="TEXTREL") print $2}'`
while [ -n "$textrel" ]; do
Info "$f: TEXTREL entry found: $textrel"
if [ "$VERIFY_ELF_TEXTREL" = relaxed ]; then
break
fi
Info "$f: TEXTREL entry found: $textrel"
rc=1
break
done