slackware-current/patches/source/seamonkey/doinst.sh
Patrick J Volkerding 43560cb6f4 Wed Mar 2 21:39:57 UTC 2022
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 *)
2022-03-03 13:29:43 +01:00

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