diff options
author | jbj <devnull@localhost> | 2000-03-10 16:53:08 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2000-03-10 16:53:08 +0000 |
commit | 3af1f7d94ed7454c025a520c05a8084117131582 (patch) | |
tree | 2ace1c70ea41ae2d89ad899d0e59b17c704ccb7c /autodeps | |
parent | 8d3c1b2ba0884aca1c0ffcaf913480ecea321fd6 (diff) | |
download | librpm-tizen-3af1f7d94ed7454c025a520c05a8084117131582.tar.gz librpm-tizen-3af1f7d94ed7454c025a520c05a8084117131582.tar.bz2 librpm-tizen-3af1f7d94ed7454c025a520c05a8084117131582.zip |
fix: better filter in linux.req to avoid ARM specific objdump output.
CVS patchset: 3614
CVS date: 2000/03/10 16:53:08
Diffstat (limited to 'autodeps')
-rw-r--r-- | autodeps/linux.req | 2 |
1 files changed, 1 insertions, 1 deletions
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 |