diff options
author | wiz <wiz> | 2000-11-02 03:25:32 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-11-02 03:25:32 +0000 |
commit | 84776bc9a52c0beb588e0793b6e0a67e6fc7b6a2 (patch) | |
tree | d820a2e345b88d60135b9e3edc15e3a1494120c7 /misc/dialog/Makefile | |
parent | f1fc650200ce65e5810a7d8e17676017f5082461 (diff) | |
download | pkgsrc-84776bc9a52c0beb588e0793b6e0a67e6fc7b6a2.tar.gz |
NEED_NCURSES check doesn't have to be after bsd.pkg.mk inclusion anymore
(only after bsd.prefs.mk inclusion)
Diffstat (limited to 'misc/dialog/Makefile')
-rw-r--r-- | misc/dialog/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/misc/dialog/Makefile b/misc/dialog/Makefile index ad1a6591ef9..d8f5abb05ab 100644 --- a/misc/dialog/Makefile +++ b/misc/dialog/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2000/07/28 20:30:08 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2000/11/02 03:25:33 wiz Exp $ # DISTNAME= dialog-0.6z @@ -21,8 +21,10 @@ post-install: ${RM} ${WRKSRC}/samples/${file}.tmp .endfor -.include "../../mk/bsd.pkg.mk" +.include "../../mk/bsd.prefs.mk" .if defined(NEED_NCURSES) && ${NEED_NCURSES} == "YES" MAKE_ENV+= HAVE_TRUE_NCURSES=true .endif + +.include "../../mk/bsd.pkg.mk" |