svn commit: r412626 - head/audio/mac

John Marino marino at FreeBSD.org
Wed Apr 6 15:29:27 UTC 2016


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:


More information about the svn-ports-all mailing list