diff options
author | nobutaka <nobutaka@FreeBSD.org> | 2003-08-10 14:03:39 +0000 |
---|---|---|
committer | nobutaka <nobutaka@FreeBSD.org> | 2003-08-10 14:03:39 +0000 |
commit | 073527e17e83b757f561cdfac479a70bf85ca0bf (patch) | |
tree | d69e774772ccb1835756d402c2f9db27760c7ba4 /multimedia/libxine | |
parent | d8a0eca50937f97780deb049b24087efaa78bf64 (diff) | |
download | FreeBSD-ports-073527e17e83b757f561cdfac479a70bf85ca0bf.zip FreeBSD-ports-073527e17e83b757f561cdfac479a70bf85ca0bf.tar.gz |
Remove parentheses from .if statement to avoid make error.
Submitted by: Kay Lehmann <kay_lehmann@web.de>
Diffstat (limited to 'multimedia/libxine')
-rw-r--r-- | multimedia/libxine/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multimedia/libxine/Makefile b/multimedia/libxine/Makefile index d534230..8722c90 100644 --- a/multimedia/libxine/Makefile +++ b/multimedia/libxine/Makefile @@ -50,7 +50,7 @@ MAN1= xine-config.1 .include <bsd.port.pre.mk> # PRId64 macro is not defined -.if (${OSVERSION} < 500028) +.if ${OSVERSION} < 500028 EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src:xine-engine:audio_out.c .endif |