svn commit: r372571 - head/audio/speex
Sean Bruno
sbruno at FreeBSD.org
Fri Nov 14 18:34:01 UTC 2014
Author: sbruno
Date: Fri Nov 14 18:34:00 2014
New Revision: 372571
URL: https://svnweb.freebsd.org/changeset/ports/372571
QAT: https://qat.redports.org/buildarchive/r372571/
Log:
Fix the cross-compile case where we build for armv6/mips on a system
that is actually amd64.
Phabric: D1155
Reviewed by: bapt
Modified:
head/audio/speex/Makefile
Modified: head/audio/speex/Makefile
==============================================================================
--- head/audio/speex/Makefile Fri Nov 14 18:19:31 2014 (r372570)
+++ head/audio/speex/Makefile Fri Nov 14 18:34:00 2014 (r372571)
@@ -23,9 +23,11 @@ INSTALL_TARGET= install-strip
.include <bsd.port.pre.mk>
+.if ${ARCH} == "i386" || ${ARCH} == "amd64"
.if defined(MACHINE_CPU) && ${MACHINE_CPU:Msse}!=""
CONFIGURE_ARGS+= --enable-sse
.endif
+.endif
post-patch:
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
More information about the svn-ports-head
mailing list