mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
cebf29a6c7
a/aaa_libraries-15.1-x86_64-27.txz: Rebuilt. Upgraded: liblzma.so.5.6.0, libcares.so.2.12.0, libpng16.so.16.43.0, libunistring.so.5.1.0.
7 lines
331 B
Bash
7 lines
331 B
Bash
# Let's attempt to activate these libraries as they might be needed by various
|
|
# install scripts early on. We used to package symlinks in the normal way, and
|
|
# it's possible that would be fine too, but there must(?) have been a reason
|
|
# that we quit doing that...
|
|
if [ -x sbin/ldconfig ]; then
|
|
sbin/ldconfig -r . 2> /dev/null
|
|
fi
|