19 lines
401 B
Bash
Executable file
19 lines
401 B
Bash
Executable file
#! /bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.3 1999/10/05 07:58:41 jlam Exp $
|
|
#
|
|
|
|
case "$2" in
|
|
DEINSTALL) cat <<EOF
|
|
|
|
================================================================
|
|
|
|
Note that you now need to undefine USE_LOCALBASE_FOR_X11 in your
|
|
/etc/mk.conf! If you do not remove that change, X11 pkgs will
|
|
no longer build.
|
|
|
|
================================================================
|
|
|
|
EOF
|
|
;;
|
|
esac
|