diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-03-09 12:19:42 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-03-09 12:19:42 +0000 |
commit | 9b41fd3b79022732218635bb77a87fbadb7a3a79 (patch) | |
tree | b4d19fe6afc1d9af3ac26a7d09ab9673a27b0836 /www/wyvern | |
parent | 6995d706acc5aae13f93260ac22f1c943f1bbbc1 (diff) |
The condition for checking whether the system supports IPv6 was
reversed. D'oh!
Submitted by: OKAZAKI Tetsurou <okazaki@be.to>
Notes
Notes:
svn path=/head/; revision=39307
Diffstat (limited to 'www/wyvern')
-rw-r--r-- | www/wyvern/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/wyvern/Makefile b/www/wyvern/Makefile index 92b4dff4fae7..64204987e437 100644 --- a/www/wyvern/Makefile +++ b/www/wyvern/Makefile @@ -7,7 +7,7 @@ PORTNAME= wyvern PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www ipv6 MASTER_SITES= http://www.MysticWALL.com/software/src/ @@ -25,7 +25,7 @@ MAKE_ARGS= rcdir="${LOCALBASE}/etc/rc.d" .include <bsd.port.pre.mk> -.if ${OSVERSION} < 400014 +.if ${OSVERSION} >= 400014 CONFIGURE_ARGS+= --enable-ipv6 .endif |