summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2000-08-01 02:18:12 +0000
committerwiz <wiz@pkgsrc.org>2000-08-01 02:18:12 +0000
commit3d4a0f353291d0bd2419c46ecc3299c680fe5d9c (patch)
tree206ec1d1ad62323df8c4e638ad41bc6175b5d980 /mk
parent9a6a8bf30a3da1d3e9b05e28127f4944b114aabb (diff)
downloadpkgsrc-3d4a0f353291d0bd2419c46ecc3299c680fe5d9c.tar.gz
Do _not_ pass down NEED_NCURSES in the make flags, or we end up
with a recursive dependency of ncurses on itself on <1.4Y. Problem found by Dan McMahill.
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.pkg.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index 0ac5d50f8a7..a6ef8fa7ef7 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.529 2000/08/01 02:16:58 hubertf Exp $
+# $NetBSD: bsd.pkg.mk,v 1.530 2000/08/01 02:18:12 wiz Exp $
#
# This file is in the public domain.
#
@@ -170,7 +170,9 @@ NEED_NCURSES= NO
.else
NEED_NCURSES= NO
.endif
-MAKEFLAGS+= NEED_NCURSES=${NEED_NCURSES}
+# do _not_ pass NEED_NCURSES flag down, or we end up with recursive
+# dependency of ncurses on itself on <1.4Y.
+# MAKEFLAGS+= NEED_NCURSES=${NEED_NCURSES}
.endif
.if defined(NEED_NCURSES) && ${NEED_NCURSES} == "YES"