Unbreak find-requires (#443015, #564527)

- regression originating from commit 9ed9b4e345
  which was supposed to fix something for on ARM but broke pretty much
  all else
- this should've been in 9.1.0 but somehow gone missing, ugh...
- fix originally from Bill Nottingham
This commit is contained in:
Panu Matilainen 2010-02-15 13:42:36 +02:00
parent 7cf1ad2dbb
commit 635437c7bf
1 changed files with 1 additions and 1 deletions

View File

@ -106,6 +106,7 @@ for f in $liblist $exelist ; do
print $2 ;
}
}
(START==2) && /^[A-Za-z]/ { START=3; }
/^Version References:$/ { START=2; }
(START==2) && /required from/ {
sub(/:/, "", $3);
@ -114,7 +115,6 @@ for f in $liblist $exelist ; do
(START==2) && (LIBNAME!="") && ($4!="") {
print LIBNAME "(" $4 ")'$lib64'";
}
/^[A-Za-z]/ { START=3; }
'
done | sort -u