diff options
author | Volker Stolz <vs@FreeBSD.org> | 2004-05-18 07:33:02 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2004-05-18 07:33:02 +0000 |
commit | 33d69509c8d1f25f0affe2cc40f8f3c071c63497 (patch) | |
tree | b1d4e91cb4ad6bc73a59e57e5388872d845e034d /emulators/vba | |
parent | 4981c4e28dbf85099b75f168e61174eb965a99bb (diff) |
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
Notes
Notes:
svn path=/head/; revision=109406
Diffstat (limited to 'emulators/vba')
-rw-r--r-- | emulators/vba/Makefile | 2 |
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 |