mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
43560cb6f4
patches/packages/seamonkey-2.53.11-x86_64-1_slack15.0.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.11 (* Security fix *)
10 lines
354 B
Bash
10 lines
354 B
Bash
# 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
|