glibc32: run ldconfig at post install/remove time.

This commit is contained in:
Juan RP 2010-05-15 22:47:26 +02:00
parent aaf4e43b41
commit 4f8c08b27e
2 changed files with 16 additions and 0 deletions

8
srcpkgs/glibc32/INSTALL Normal file
View file

@ -0,0 +1,8 @@
#
# Update ld.so(8) cache for lib32 shared libraries.
#
case "${ACTION}" in
post)
ldconfig -r .
;;
esac

8
srcpkgs/glibc32/REMOVE Normal file
View file

@ -0,0 +1,8 @@
#
# Update ld.so(8) cache for lib32 shared libraries.
#
case "${ACTION}" in
post)
ldconfig -r .
;;
esac