here it is AGAIN.
after the update of binutils today
$ amule
amule: error while loading shared libraries: libbfd-2.17.so: cannot open
shared object file: No such file or directory
if it helps here my little script that found that :
#!/bin/sh
string=${1:-"not found"}
for i in /usr/bin/* /bin/* /usr/sbin/* /sbin/*
do
_output=`ldd "$i" 2>/dev/null|grep "$string"`
if [ -n "$_output" ] ;then
echo "$i:"
echo "$_output"
fi
done
a call it findbrokenlibdep.sh
and when i run it, it gives me:
# sh ./findbrokenlibdep.sh
/usr/bin/amule:
libbfd-2.17.so => not found
/usr/bin/amulecmd:
libbfd-2.17.so => not found
/usr/bin/amuled:
libbfd-2.17.so => not found
/usr/bin/amulegui:
libbfd-2.17.so => not found
/usr/bin/amuleweb:
libbfd-2.17.so => not found
_______________________________________________
arch mailing list
[email protected]
http://archlinux.org/mailman/listinfo/arch