svn commit: r352736 - head/devel/gprbuild

John Marino marino at FreeBSD.org
Thu May 1 08:18:56 UTC 2014


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=	.
 


More information about the svn-ports-all mailing list