glibc32: run ldconfig at post install/remove time.
This commit is contained in:
parent
aaf4e43b41
commit
4f8c08b27e
2 changed files with 16 additions and 0 deletions
8
srcpkgs/glibc32/INSTALL
Normal file
8
srcpkgs/glibc32/INSTALL
Normal 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
8
srcpkgs/glibc32/REMOVE
Normal file
|
@ -0,0 +1,8 @@
|
|||
#
|
||||
# Update ld.so(8) cache for lib32 shared libraries.
|
||||
#
|
||||
case "${ACTION}" in
|
||||
post)
|
||||
ldconfig -r .
|
||||
;;
|
||||
esac
|
Loading…
Reference in a new issue