diff options
author | tron <tron@pkgsrc.org> | 1999-09-03 22:00:52 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-09-03 22:00:52 +0000 |
commit | a9af877984f7b430d48340603595473605fd204d (patch) | |
tree | 26bf200091d87b3629bde9a752928611eea97ae5 /net/zebra | |
parent | 8806522d1706ce8f1f4dce2fe1a0452f191d880e (diff) | |
download | pkgsrc-a9af877984f7b430d48340603595473605fd204d.tar.gz |
Compare "${USE_INET6}" explicitly with "YES" so that you can override
settings at the command line.
Diffstat (limited to 'net/zebra')
-rw-r--r-- | net/zebra/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/zebra/Makefile b/net/zebra/Makefile index 9aa374a68d7..8d3564b3e95 100644 --- a/net/zebra/Makefile +++ b/net/zebra/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 1999/08/30 02:57:35 itojun Exp $ +# $NetBSD: Makefile,v 1.15 1999/09/03 22:00:52 tron Exp $ # Based on KAME Id: Makefile,v 1.1.2.1.2.1.10.2 1999/01/05 11:03:50 itojun Exp # @@ -18,7 +18,7 @@ BUILD_DEFS+= USE_INET6 .include "../../mk/bsd.prefs.mk" -.if defined(USE_INET6) +.if defined(USE_INET6) && ${USE_INET6} == YES PLIST_SRC= ${PKGDIR}/PLIST.v6 .else CONFIGURE_ARGS+=--disable-ospf6d --disable-ripngd |