diff options
author | nobutaka <nobutaka@FreeBSD.org> | 2003-08-10 22:03:39 +0800 |
---|---|---|
committer | nobutaka <nobutaka@FreeBSD.org> | 2003-08-10 22:03:39 +0800 |
commit | 073527e17e83b757f561cdfac479a70bf85ca0bf (patch) | |
tree | d69e774772ccb1835756d402c2f9db27760c7ba4 /multimedia/xine | |
parent | d8a0eca50937f97780deb049b24087efaa78bf64 (diff) | |
download | freebsd-ports-gnome-073527e17e83b757f561cdfac479a70bf85ca0bf.tar.gz freebsd-ports-gnome-073527e17e83b757f561cdfac479a70bf85ca0bf.tar.zst freebsd-ports-gnome-073527e17e83b757f561cdfac479a70bf85ca0bf.zip |
Remove parentheses from .if statement to avoid make error.
Submitted by: Kay Lehmann <kay_lehmann@web.de>
Diffstat (limited to 'multimedia/xine')
-rw-r--r-- | multimedia/xine/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/multimedia/xine/Makefile b/multimedia/xine/Makefile index 480ddd64fc37..dcfe73d58113 100644 --- a/multimedia/xine/Makefile +++ b/multimedia/xine/Makefile @@ -35,7 +35,7 @@ MAN1= aaxine.1 xine-bugreport.1 xine-check.1 xine-remote.1 xine.1 .include <bsd.port.pre.mk> -.if (${ARCH} == "i386") +.if ${ARCH} == "i386" .if !defined(WITHOUT_WIN32_CODECS) RUN_DEPENDS= ${CODEC_DETECTION_FILE}:${CODEC_PORT} @@ -44,12 +44,12 @@ CODEC_DETECTION_FILE!= ${MAKE} -f ${CODEC_PORT}/Makefile -V CODEC_DETECTION_FILE .endif .endif -.if (${OSVERSION} == 500043) +.if ${OSVERSION} == 500043 EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src:xitk:common.h .endif # mbrtowc() is not implemented -.if (${OSVERSION} < 500039) +.if ${OSVERSION} < 500039 CONFIGURE_ARGS+= --disable-mbs .endif |