blob: fe830f25acd88ba632e979ee9ba49c0ab7f8cdb5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Removing /usr/lib/seamonkey from ld.so.conf. That was a hack that we did
# long ago before a standalone mozilla-nss package was shipped.
# Hopefully this won't break everything. ;-)
( cd etc
cat ld.so.conf | grep -v /usr/lib/seamonkey > ld.so.conf.new
mv ld.so.conf.new ld.so.conf
)
if [ -x /sbin/ldconfig ]; then
/sbin/ldconfig 2> /dev/null
fi
|