diff options
author | tron <tron> | 2013-09-12 10:50:28 +0000 |
---|---|---|
committer | tron <tron> | 2013-09-12 10:50:28 +0000 |
commit | fa1f0be9bad1156311609ce85050a17f1a56ec0f (patch) | |
tree | e34d2508e8ae8b44a3891f238254f08c34b27f16 /multimedia | |
parent | c3809e78ecca964bf4b44bd9b9e16b3a5e8ac800 (diff) | |
download | pkgsrc-fa1f0be9bad1156311609ce85050a17f1a56ec0f.tar.gz |
Don't build the unit tests under Mac OS X. The makefile tries to create an
empty ".a" file which fails and breaks the build.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/libvpx/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/multimedia/libvpx/Makefile b/multimedia/libvpx/Makefile index a9fee0c26c1..be6e10f9247 100644 --- a/multimedia/libvpx/Makefile +++ b/multimedia/libvpx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2013/09/11 15:50:32 ryoon Exp $ +# $NetBSD: Makefile,v 1.22 2013/09/12 10:50:28 tron Exp $ DISTNAME= libvpx-v1.2.0 PKGNAME= ${DISTNAME:S/-v/-/} @@ -37,6 +37,7 @@ REPLACE_BASH= configure \ .if ${OPSYS} == "Darwin" BUILDLINK_TRANSFORM+= rm:-Wl,-Bsymbolic +CONFIGURE_ARGS+= --disable-unit-tests . if ${MACHINE_ARCH} == "i386" . if !empty(OS_VERSION:M12.*) CONFIGURE_ARGS+= --target=x86-darwin12-gcc |