svn commit: r327632 - head/audio/opus

Christian Weisgerber naddy at FreeBSD.org
Thu Sep 19 15:30:17 UTC 2013


Author: naddy
Date: Thu Sep 19 15:30:16 2013
New Revision: 327632
URL: http://svnweb.freebsd.org/changeset/ports/327632

Log:
  bsd.port.options.mk can handle testing of ARCH, and is less expensive
  then inclusion of bsd.port.pre.mk
  
  PR:		180585
  Submitted by:	jgh

Modified:
  head/audio/opus/Makefile

Modified: head/audio/opus/Makefile
==============================================================================
--- head/audio/opus/Makefile	Thu Sep 19 15:22:39 2013	(r327631)
+++ head/audio/opus/Makefile	Thu Sep 19 15:30:16 2013	(r327632)
@@ -21,10 +21,10 @@ CONFIGURE_ARGS=	--enable-custom-modes \
 regression-test: build
 	@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check
 
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
 
 .if ${ARCH} == "arm"
 CONFIGURE_ARGS+=--enable-fixed-point
 .endif
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>


More information about the svn-ports-all mailing list