Date: Wed, 6 Apr 2016 15:29:26 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412626 - head/audio/mac Message-ID: <201604061529.u36FTQMW083566@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Wed Apr 6 15:29:26 2016 New Revision: 412626 URL: https://svnweb.freebsd.org/changeset/ports/412626 Log: audio/mac: Don't clobber BUILD_DEPENDS + DF support The yasm BUILD_DEPENDS will overwrite any previous definition of BUILD_DEPENDS (e.g. iconv). Change the operator to += to fix. While here, yasm is only valid for FreeBSD, so add an OPSYS condition in addition to the ARCH condition. Approved by: just-fix-it Modified: head/audio/mac/Makefile Modified: head/audio/mac/Makefile ============================================================================== --- head/audio/mac/Makefile Wed Apr 6 15:22:52 2016 (r412625) +++ head/audio/mac/Makefile Wed Apr 6 15:29:26 2016 (r412626) @@ -24,8 +24,10 @@ OPTIONS_DEFINE= DOCS .include <bsd.port.pre.mk> +.if ${OPSYS} == FreeBSD .if ${ARCH} == "i386" || ${ARCH} == "amd64" -BUILD_DEPENDS= yasm:devel/yasm +BUILD_DEPENDS+= yasm:devel/yasm +.endif .endif post-install:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604061529.u36FTQMW083566>