Summary: | [patch] audio/opus: drop unnecessary processing by including bsd.port.pre.mk | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Jason Helfman <jgh> | ||||
Component: | Individual Port(s) | Assignee: | Christian Weisgerber <naddy> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Jason Helfman
2013-07-16 01:50:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->naddy Over to maintainer (via the GNATS Auto Assign Tool) State Changed From-To: open->closed Committed after discussion on freebsd-ports. 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> _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" |