diff options
author | dougb <dougb@FreeBSD.org> | 2004-09-27 12:43:55 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2004-09-27 12:43:55 +0800 |
commit | 1d607b46a2275d6542d6efd25351622d045b81e5 (patch) | |
tree | b469a820b0ca90afddffa27bb61fc3e218957a84 /dns/bind94 | |
parent | 58c135d999b4808239d81f3bc3fc00275a3cd8a6 (diff) | |
download | freebsd-ports-gnome-1d607b46a2275d6542d6efd25351622d045b81e5.tar.gz freebsd-ports-gnome-1d607b46a2275d6542d6efd25351622d045b81e5.tar.zst freebsd-ports-gnome-1d607b46a2275d6542d6efd25351622d045b81e5.zip |
The parens around the OSVERSION test were fatal for < 4.9, and did not
provide anything useful for newer systems, so remove them.
PR: ports/72118
Submitted by: Michel Lavondes <fox@vader.aacc.cc.md.us>
Approved by: portmgr (eik)
Diffstat (limited to 'dns/bind94')
-rw-r--r-- | dns/bind94/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/bind94/Makefile b/dns/bind94/Makefile index c908e5b242d7..5dffd8c4d851 100644 --- a/dns/bind94/Makefile +++ b/dns/bind94/Makefile @@ -34,7 +34,7 @@ USE_OPENSSL= yes .include <bsd.port.pre.mk> -.if (${OSVERSION} >= 503000) +.if ${OSVERSION} >= 503000 CONFIGURE_ARGS+= --enable-threads .else CONFIGURE_ARGS+= --disable-threads |