diff options
author | notting <devnull@localhost> | 2000-09-14 23:05:30 +0000 |
---|---|---|
committer | notting <devnull@localhost> | 2000-09-14 23:05:30 +0000 |
commit | 81cf1461aa5850cd068a185aff6ae1f155506747 (patch) | |
tree | a02dc713fb78f5beb143db9e26a0dbc46353a3af /autodeps | |
parent | 2108d886ba66b90f75a9daa75f8b0a74090e999c (diff) | |
download | rpm-81cf1461aa5850cd068a185aff6ae1f155506747.tar.gz rpm-81cf1461aa5850cd068a185aff6ae1f155506747.tar.bz2 rpm-81cf1461aa5850cd068a185aff6ae1f155506747.zip |
fix 64bit lib stuff
CVS patchset: 4166
CVS date: 2000/09/14 23:05:30
Diffstat (limited to 'autodeps')
-rw-r--r-- | autodeps/ia64-linux.prov | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autodeps/ia64-linux.prov b/autodeps/ia64-linux.prov index a637b874e..fa9511357 100644 --- a/autodeps/ia64-linux.prov +++ b/autodeps/ia64-linux.prov @@ -8,8 +8,8 @@ filelist=$(grep "\\.so" | grep -v "^/lib/ld.so" | xargs file -L 2>/dev/null | gr for f in $filelist; do soname=$(objdump -p $f | awk '/SONAME/ {print $2}') + lib64=`if file -L $f 2>/dev/null | grep "ELF 64-bit" >/dev/null; then echo "()(64bit)"; fi` if [ "$soname" != "" ]; then - lib64=`if file -L $f 2>/dev/null | grep "ELF 64-bit" >/dev/null; then echo "()(64bit)"; fi` if [ ! -L $f ]; then echo $soname$lib64 objdump -p $f | awk ' @@ -24,6 +24,6 @@ for f in $filelist; do done fi else - echo ${f##*/} + echo ${f##*/}$lib64 fi done | sort -u |