diff options
Diffstat (limited to 'emulators/compat12/DEINSTALL')
-rw-r--r-- | emulators/compat12/DEINSTALL | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/emulators/compat12/DEINSTALL b/emulators/compat12/DEINSTALL new file mode 100644 index 00000000000..cc4d14ce400 --- /dev/null +++ b/emulators/compat12/DEINSTALL @@ -0,0 +1,26 @@ +#!/bin/sh +# +# $NetBSD: DEINSTALL,v 1.1 2001/10/31 23:52:19 zuntum Exp $ + +PKGNAME=$1 +STAGE=$2 + +case ${STAGE} in +DEINSTALL) + ;; +POST-DEINSTALL) + COMPAT_LIBDIR=@COMPAT_LIBDIR@ + + rmdir -p ${PKG_PREFIX}/${COMPAT_LIBDIR} 2>/dev/null || true + + # 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 + ;; +*) + echo "Unexpected argument: ${STAGE}" + exit 1 + ;; +esac +exit 0 |