20 lines
574 B
Text
20 lines
574 B
Text
# $NetBSD: DEINSTALL,v 1.2 2003/08/30 19:09:38 jlam Exp $
|
|
|
|
case ${STAGE} in
|
|
POST-DEINSTALL)
|
|
MACHINE_ARCH=@MACHINE_ARCH@
|
|
COMPAT_LIBDIR=@COMPAT_LIBDIR@
|
|
COMPAT_LIBEXECDIR=@COMPAT_LIBEXECDIR@
|
|
COMPAT_XLIBDIR=@COMPAT_XLIBDIR@
|
|
|
|
${RMDIR} -p ${PKG_PREFIX}/${COMPAT_LIBDIR} ${PKG_PREFIX}/${COMPAT_LIBEXECDIR} ${PKG_PREFIX}/${COMPAT_XLIBDIR} 2>/dev/null || ${TRUE}
|
|
|
|
# clean up the symlink
|
|
${RM} -f /emul/netbsd32
|
|
|
|
# Regenerate the shared library cache. This should work on either
|
|
# a.out or on ELF with the 1.5 release.
|
|
#
|
|
( @LDCONFIG@ || ${TRUE} ) >/dev/null 2>&1
|
|
;;
|
|
esac
|