Em Ter, 2009-01-27 às 09:27 -0500, Tsu-Fan Cheng escreveu:
> Hi,
> have you solved the problem yet? I also have libXmu failed to
> upgrade due to libxcb-xlib.la. Thanks!!
I removed every instance of libxb-xlib.la from /usr/local/lib/*.la
than it all works again
a shell script like:
==========================
#!/bin/sh
lista=`find /usr/local/lib -type f -name "*.la"`
if [ -n "$lista" ]
then
for i in $lista
do
if grep $1 $i > /dev/null
then
sed -i "" "s|/usr/local/lib/$1||" $lista
fi
done
fi
================================
supose you name this shell -> XX
than.....
sh XX libxcb-xlib.la
will do the trick....
after that, you will be able to build things again.
Sergio
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[email protected]"