diff options
author | grant <grant> | 2002-08-21 02:43:44 +0000 |
---|---|---|
committer | grant <grant> | 2002-08-21 02:43:44 +0000 |
commit | 0ea33c969a629b1ecd9ac3172a0a9043b70791c2 (patch) | |
tree | ddc8b0a52d3c8d0a0a20293b67556dd0432d6554 /mail | |
parent | 856717cf3f0a35ce409782a9d678d7d9f8f25d61 (diff) | |
download | pkgsrc-0ea33c969a629b1ecd9ac3172a0a9043b70791c2.tar.gz |
check that USE_INET6 is defined.
remove extraneous parenthesis around .if (${FOO} ..) conditions.
Diffstat (limited to 'mail')
-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 |