11 lines
181 B
Text
11 lines
181 B
Text
|
#
|
||
|
# This script removes ld.so glibc32 generated files.
|
||
|
#
|
||
|
case "${ACTION}" in
|
||
|
post)
|
||
|
if [ -f etc/ld.so.conf.d/glibc32.conf ]; then
|
||
|
rm -f etc/ld.so.conf.d/glibc32.conf
|
||
|
fi
|
||
|
;;
|
||
|
esac
|