aboutsummaryrefslogtreecommitdiffstats
path: root/emulators
diff options
context:
space:
mode:
authorvs <vs@FreeBSD.org>2004-05-18 15:33:02 +0800
committervs <vs@FreeBSD.org>2004-05-18 15:33:02 +0800
commit411af1a73afd4cb883523f6d052cb66e7caf21ad (patch)
tree9bf7f2b2a4667ede96009b440fecc70ec0a36dc3 /emulators
parent28364d9e4410fb3fdc5e1a5e783fab66551a331b (diff)
downloadfreebsd-ports-gnome-411af1a73afd4cb883523f6d052cb66e7caf21ad.tar.gz
freebsd-ports-gnome-411af1a73afd4cb883523f6d052cb66e7caf21ad.tar.zst
freebsd-ports-gnome-411af1a73afd4cb883523f6d052cb66e7caf21ad.zip
Workaround broken .if (${OSVERSION}...), cf.
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/dads-workarounds.html PR: ports/66739 Submitted by: Scott Lipcon
Diffstat (limited to 'emulators')
-rw-r--r--emulators/vba/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/vba/Makefile b/emulators/vba/Makefile
index bf7f67f8d010..0219be56bbc3 100644
--- a/emulators/vba/Makefile
+++ b/emulators/vba/Makefile
@@ -28,7 +28,7 @@ TARGET_DIR= ${PREFIX}/bin/
.include <bsd.port.pre.mk>
-.if (${OSVERSION} < 500035)
+.if ( ${OSVERSION} < 500035 )
CFLAGS+= -O0
.endif