diff options
author | tron <tron@pkgsrc.org> | 2013-09-12 10:50:28 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2013-09-12 10:50:28 +0000 |
commit | b620d03ac04cc68bf45bc0ae0259b35aae5e5367 (patch) | |
tree | e34d2508e8ae8b44a3891f238254f08c34b27f16 | |
parent | 28c45b64c6186aa64b6ec322a8210e85f98fe3f9 (diff) | |
download | pkgsrc-b620d03ac04cc68bf45bc0ae0259b35aae5e5367.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.
-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 |