diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-06-14 02:10:57 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-06-14 02:10:57 +0000 |
commit | aeca013e4d1cfa80dc0d3c5e5cafd185614d225a (patch) | |
tree | f18b392407c95d68ae6f59e6599dbf5cd67f6619 /mail | |
parent | 137cde977e17e2b53adc1c83eb438f3f12370ce7 (diff) | |
download | pkgsrc-aeca013e4d1cfa80dc0d3c5e5cafd185614d225a.tar.gz |
Use the defines from bsd.pkg.mk, don't start subshells.
(The values for uname etc. will probably be passed in from
upper-level make processes).
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mutt/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index 7d34d80aa27..77eaeb87cf6 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2000/06/09 14:58:30 wiz Exp $ +# $NetBSD: Makefile,v 1.49 2000/06/14 02:10:58 hubertf Exp $ DISTNAME= mutt-1.2i CATEGORIES= mail @@ -46,11 +46,11 @@ PLIST_SUBST+= LOCALEBASE=share .endif .if ${OPSYS} == "NetBSD" -OSVER!= uname -r +.include "../../mk/bsd.prefs.mk" GOOD_CURSES= 1.4[Y-Z] 1.4Z[A-Z] 1.[5-9]* .for PATTERN in ${GOOD_CURSES} -.if ${OSVER:M${PATTERN}} != "" +.if ${OS_VERSION:M${PATTERN}} != "" CURSES_GOOD?= # defined .endif .endfor |