summaryrefslogtreecommitdiff
path: root/autodeps
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2002-05-26 18:40:25 +0000
committerjbj <devnull@localhost>2002-05-26 18:40:25 +0000
commitca60c30e3a048234fa3e6736d3145af6128b6f8c (patch)
tree128741688f56e28b09aa6307a7bd6c9151d261b3 /autodeps
parent3067a2c91dc0e85acab883e3fccc5caf15247d89 (diff)
downloadlibrpm-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.req5
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 ;
}
}