mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 01:38:07 -04:00
12 lines
205 B
Bash
12 lines
205 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1 2006/06/15 20:40:16 jlam Exp $
|
|
|
|
case ${STAGE} in
|
|
DEINSTALL)
|
|
if [ "${PKG_PREFIX}" != "${LOCALBASE}" ]; then
|
|
${RM} -f ${LOCALBASE}/share/aclocal/gtk.m4
|
|
fi
|
|
;;
|
|
esac
|