blob: 4360e642bea4d30b4ff4ae42d24730bf7ff05910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#! /bin/sh
#
# $NetBSD: DEINSTALL,v 1.2 1998/08/07 11:18:26 agc Exp $
#
case "$2" in
DEINSTALL) cat <<EOF
===============================================================
Note that you now need to remove the line which assigns X11BASE
(such as X11BASE=\${LOCALBASE}) from your /etc/mk.conf! If you
do not remove that change, X11 pkgs will no longer build.
===============================================================
EOF
;;
esac
|