diff options
author | jbj <devnull@localhost> | 2002-05-26 18:40:25 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-05-26 18:40:25 +0000 |
commit | ca60c30e3a048234fa3e6736d3145af6128b6f8c (patch) | |
tree | 128741688f56e28b09aa6307a7bd6c9151d261b3 /autodeps | |
parent | 3067a2c91dc0e85acab883e3fccc5caf15247d89 (diff) | |
download | librpm-tizen-ca60c30e3a048234fa3e6736d3145af6128b6f8c.tar.gz librpm-tizen-ca60c30e3a048234fa3e6736d3145af6128b6f8c.tar.bz2 librpm-tizen-ca60c30e3a048234fa3e6736d3145af6128b6f8c.zip |
- fix: un-resurrect "()(64bit)" markings using objdump on i386.
CVS patchset: 5449
CVS date: 2002/05/26 18:40:25
Diffstat (limited to 'autodeps')
-rw-r--r-- | autodeps/linux.req | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/autodeps/linux.req b/autodeps/linux.req index 23bc50752..16b568424 100644 --- a/autodeps/linux.req +++ b/autodeps/linux.req @@ -98,8 +98,9 @@ for f in $liblist $exelist ; do /^Dynamic Section:$/ { START=1; } (START==1) && /NEEDED/ { if (needed) { - sub(/$/, "()'$mark64'", $2) ; - sub(/()$/, "", $2) ; + if ("'$lib64'" != "") { + sub(/$/, "()'$lib64'", $2) ; + } print $2 ; } } |