diff options
author | grant <grant@pkgsrc.org> | 2002-08-21 02:43:44 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2002-08-21 02:43:44 +0000 |
commit | 618961e5682a168bdf9883c5ef31d20eadc5e39e (patch) | |
tree | ddc8b0a52d3c8d0a0a20293b67556dd0432d6554 /mail/cue | |
parent | 386e46734bbc42d97cf2cb604330fc1e133aa6a1 (diff) | |
download | pkgsrc-618961e5682a168bdf9883c5ef31d20eadc5e39e.tar.gz |
check that USE_INET6 is defined.
remove extraneous parenthesis around .if (${FOO} ..) conditions.
Diffstat (limited to 'mail/cue')
-rw-r--r-- | mail/cue/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/cue/Makefile b/mail/cue/Makefile index 2d942c20a78..65f1baa3e66 100644 --- a/mail/cue/Makefile +++ b/mail/cue/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2002/06/17 11:22:18 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2002/08/21 02:43:45 grant Exp $ DISTNAME= cue-snap-20010917 PKGNAME= cue-20010917 @@ -15,7 +15,7 @@ GNU_CONFIGURE= yes BUILD_DEFS+= USE_INET6 -.if ${USE_INET6} == "YES" +.if defined(USE_INET6) && ${USE_INET6} == "YES" CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 |