From owner-svn-ports-head@FreeBSD.ORG Thu May 1 08:18:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93891E04; Thu, 1 May 2014 08:18:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 80C681C4C; Thu, 1 May 2014 08:18:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s418Iu8E031242; Thu, 1 May 2014 08:18:56 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s418Iuol031241; Thu, 1 May 2014 08:18:56 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201405010818.s418Iuol031241@svn.freebsd.org> From: John Marino Date: Thu, 1 May 2014 08:18:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352736 - head/devel/gprbuild X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 May 2014 08:18:56 -0000 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= .