diff options
author | knu <knu@FreeBSD.org> | 2001-03-09 20:19:42 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-03-09 20:19:42 +0800 |
commit | 6d99db1680815db4ed5b52dbfbacac3cf2a1324e (patch) | |
tree | f5fa686d08fddbe25f9a78e8975975dd4b87e230 /www | |
parent | 7b2b62b727beeaecbc87caaf7174e5a1e1dbc624 (diff) | |
download | freebsd-ports-graphics-6d99db1680815db4ed5b52dbfbacac3cf2a1324e.tar.gz freebsd-ports-graphics-6d99db1680815db4ed5b52dbfbacac3cf2a1324e.tar.zst freebsd-ports-graphics-6d99db1680815db4ed5b52dbfbacac3cf2a1324e.zip |
The condition for checking whether the system supports IPv6 was
reversed. D'oh!
Submitted by: OKAZAKI Tetsurou <okazaki@be.to>
Diffstat (limited to 'www')
-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 92b4dff4fae..64204987e43 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 |