diff options
author | sno <sno@pkgsrc.org> | 2014-02-16 10:02:21 +0000 |
---|---|---|
committer | sno <sno@pkgsrc.org> | 2014-02-16 10:02:21 +0000 |
commit | 1fc24748d8f573dcfb93c45741ae8666667b19e6 (patch) | |
tree | b931bb73ac4b6adf2e42ecc0a0403a8fa1f262e9 /multimedia/libvpx | |
parent | 3d42e4ee95446e40c6e67e9e561b6df581aa6fce (diff) | |
download | pkgsrc-1fc24748d8f573dcfb93c45741ae8666667b19e6.tar.gz |
fix "do what I mean" for OPSYS check
Diffstat (limited to 'multimedia/libvpx')
-rw-r--r-- | multimedia/libvpx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/libvpx/Makefile b/multimedia/libvpx/Makefile index 29c2ae36c89..f29835a6b7c 100644 --- a/multimedia/libvpx/Makefile +++ b/multimedia/libvpx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2014/02/16 09:58:18 sno Exp $ +# $NetBSD: Makefile,v 1.38 2014/02/16 10:02:21 sno Exp $ DISTNAME= libvpx_1.3.0.orig PKGNAME= ${DISTNAME:S/_/-/:S/.orig//} @@ -27,7 +27,7 @@ CONFIGURE_ARGS+= --disable-unit-tests .include "../../mk/bsd.prefs.mk" .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" -.if ${PKGSRC_COMPILER} == "gcc" && ${OPSYS} == "NetBSD" && ${OPSYS} == "SunOS" +.if ${PKGSRC_COMPILER} == "gcc" && (${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS") # PR pkg/48508: GCC 4.4 or later is required to compile ssse3 code on NetBSD & Solaris. GCC_REQD= 4.4 .endif |