Date: Thu, 1 May 2014 08:18:56 +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: r352736 - head/devel/gprbuild Message-ID: <201405010818.s418Iuol031241@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Thu May 1 08:18:55 2014 New Revision: 352736 URL: http://svnweb.freebsd.org/changeset/ports/352736 QAT: https://qat.redports.org/buildarchive/r352736/ Log: devel/gprbuild: Fix build bug that prevented parallel building The BUILD and PROCESSOR definitions were supposed to be part of MAKE_ARGS, but they somehow ended up in CONFIGURE_ARGS. This prevented parallel building and building with the "production" profile. The latter causes binary changes, hence the revbump. Modified: head/devel/gprbuild/Makefile Modified: head/devel/gprbuild/Makefile ============================================================================== --- head/devel/gprbuild/Makefile Thu May 1 06:54:47 2014 (r352735) +++ head/devel/gprbuild/Makefile Thu May 1 08:18:55 2014 (r352736) @@ -3,7 +3,7 @@ PORTNAME= gprbuild PORTVERSION= ${SNAPSHOT} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://downloads.dragonlace.net/src/ DISTNAME= gprbuild-gpl-${YEAR}-src @@ -22,8 +22,8 @@ YEAR= 2013 SNAPSHOT= 20130416 GNU_CONFIGURE= yes USES= ada gmake -CONFIGURE_ARGS+=BUILD=production -CONFIGURE_ARGS+=PROCESSORS=${MAKE_JOBS_NUMBER} +MAKE_ARGS+= BUILD=production +MAKE_ARGS+= PROCESSORS=${MAKE_JOBS_NUMBER} PORTDOCS= html txt pdf info PORTEXAMPLES= .
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405010818.s418Iuol031241>