Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Aug 2013 19:11:59 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r325226 - head/devel/openvex
Message-ID:  <201308221911.r7MJBxAk075524@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Thu Aug 22 19:11:58 2013
New Revision: 325226
URL: http://svnweb.freebsd.org/changeset/ports/325226

Log:
  Multiple targets in ALL_TARGET are run in parallel and here we want to
  run them sequentially, so run make clean from post-build.
  
  Approved by:	Jason Bacon <jwbacon@tds.net> (maintainer)

Modified:
  head/devel/openvex/Makefile

Modified: head/devel/openvex/Makefile
==============================================================================
--- head/devel/openvex/Makefile	Thu Aug 22 19:08:14 2013	(r325225)
+++ head/devel/openvex/Makefile	Thu Aug 22 19:11:58 2013	(r325226)
@@ -22,8 +22,6 @@ REINPLACE_ARGS=	-i ""
 
 MAN1=		openvex.1 openvex-new-project.1
 
-ALL_TARGET=	all clean
-
 post-patch:
 # Use make's -C option to descent into directories and fix parallel builds
 	@${REINPLACE_CMD} -e 's/^all:/& depend/ ; s/ make depend &&//' \
@@ -32,4 +30,7 @@ post-patch:
 		${WRKSRC}/Advanced/Makefile ${WRKSRC}/Beginner/Makefile \
 		${WRKSRC}/HiBob/Makefile ${WRKSRC}/Makefile
 
+post-build:
+	@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} clean)
+
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308221911.r7MJBxAk075524>