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 /devel/cvs | |
parent | 386e46734bbc42d97cf2cb604330fc1e133aa6a1 (diff) | |
download | pkgsrc-618961e5682a168bdf9883c5ef31d20eadc5e39e.tar.gz |
check that USE_INET6 is defined.
remove extraneous parenthesis around .if (${FOO} ..) conditions.
Diffstat (limited to 'devel/cvs')
-rw-r--r-- | devel/cvs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/cvs/Makefile b/devel/cvs/Makefile index aac2ebc0dfe..8e280a30b59 100644 --- a/devel/cvs/Makefile +++ b/devel/cvs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.50 2002/08/01 02:37:44 jschauma Exp $ +# $NetBSD: Makefile,v 1.51 2002/08/21 02:43:44 grant Exp $ # DISTNAME= cvs-1.11 @@ -18,12 +18,12 @@ GNU_CONFIGURE= yes BUILD_DEFS+= USE_INET6 USE_BUILDLINK_ONLY= yes -.if (${OPSYS} == "NetBSD") +.if ${OPSYS} == "NetBSD" PATCH_SITES= ${MASTER_SITE_LOCAL} PATCHFILES= cvs-1.11-v6-20020111.diff.gz PATCH_DIST_STRIP= -p1 -.if ${USE_INET6} == "YES" +.if defined(USE_INET6) && ${USE_INET6} == "YES" CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 |