diff options
Diffstat (limited to 'editors/abiword/DEINSTALL')
-rw-r--r-- | editors/abiword/DEINSTALL | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/editors/abiword/DEINSTALL b/editors/abiword/DEINSTALL deleted file mode 100644 index 2f4b20231d8..00000000000 --- a/editors/abiword/DEINSTALL +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -# -# $NetBSD: DEINSTALL,v 1.1 2001/10/31 21:22:29 zuntum Exp $ - -PKGNAME=$1 -STAGE=$2 - -RM="@RM@" -RMDIR="@RMDIR@" -TRUE="@TRUE@" - -ABIDIR=${PKG_PREFIX}/share/AbiSuite - -case ${STAGE} in -DEINSTALL) - ${RM} -f ${ABIDIR}/dictionary/american.hash - ${RMDIR} -p ${ABIDIR}/dictionary 2>/dev/null || ${TRUE} - ;; - -POST-DEINSTALL) - ;; - -*) - echo "Unexpected argument: ${STAGE}" - exit 1 - ;; -esac -exit 0 |