fix: better filter in linux.req to avoid ARM specific objdump output.

CVS patchset: 3614
CVS date: 2000/03/10 16:53:08
This commit is contained in:
jbj 2000-03-10 16:53:08 +00:00
parent 8d3c1b2ba0
commit 3af1f7d94e
2 changed files with 2 additions and 1 deletions

View File

@ -70,6 +70,7 @@
- portability: don't use id -u (Brandon Allbery).
- portability: don't chown/chgrp -h w/o lchown.
- portability: splats in rpm.spec to find /usr/{share,local}/locale/*
- fix: better filter in linux.req to avoid ARM specific objdump output.
3.0.2 -> 3.0.3
- add --eval to find result of macro expansion.

View File

@ -34,7 +34,7 @@ for f in $liblist $exelist ; do
sub(/:/, "", $3);
LIBNAME=$3;
}
(START==1) && (LIBNAME!="") && ($4!="") { print LIBNAME "(" $4 ")"; }
(START==1) && (LIBNAME!="") && ($4~=/^GLIBC_*/) { print LIBNAME "(" $4 ")"; }
/^$/ { START=0; }
'
done | sort -u