diff --git a/CHANGES b/CHANGES index b54a749ae..f8f881b6a 100644 --- a/CHANGES +++ b/CHANGES @@ -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. diff --git a/autodeps/linux.req b/autodeps/linux.req index aa6f477bc..6841ebe8f 100644 --- a/autodeps/linux.req +++ b/autodeps/linux.req @@ -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