mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
f58aff2430
a/etc-15.0-x86_64-10.txz: Rebuilt. Fix "include /etc/ld.so.conf.d/*.conf" repeats in /etc/ld.so.conf. l/imagemagick-6.9.10_64-x86_64-1.txz: Upgraded. l/seamonkey-solibs-2.49.5-x86_64-1.txz: Removed. This package was included years ago to support a few things that needed nss/nspr, but we've since included that in the mozilla-nss package. Nothing should be using this anymore. xap/seamonkey-2.49.5-x86_64-2.txz: Rebuilt. Added additional options to more closely match the official build: --enable-rust --enable-js-shell --enable-elf-hack --enable-release --enable-calendar Thanks to ljb643 for the bug report. Removed /usr/lib{,64}/seamonkey from /etc/ld.so.conf.
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
|