Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Feb 2015 13:41:43 +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: r379431 - head/deskutils/treesheets
Message-ID:  <201502201341.t1KDfhLo073622@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Fri Feb 20 13:41:42 2015
New Revision: 379431
URL: https://svnweb.freebsd.org/changeset/ports/379431
QAT: https://qat.redports.org/buildarchive/r379431/

Log:
  deskutils/treesheets: make environment was not set in build target
  
  This port's makefile fails to set the make environment when it overrode
  the build target.  Given that the 2-line build.sh script has to be
  patched in the post-configure target, the whole script should move to
  the port makefile.  However, for now just set the make environment which
  fixes the build on DragonFly with gcc-5.
  
  Approved by:	just-fix-it blanket

Modified:
  head/deskutils/treesheets/Makefile

Modified: head/deskutils/treesheets/Makefile
==============================================================================
--- head/deskutils/treesheets/Makefile	Fri Feb 20 13:31:04 2015	(r379430)
+++ head/deskutils/treesheets/Makefile	Fri Feb 20 13:41:42 2015	(r379431)
@@ -56,7 +56,7 @@ post-patch: .SILENT
 		${BUILD_WRKSRC}/system.h
 
 do-build:
-	(cd ${BUILD_WRKSRC} && ${SH} build.sh)
+	(cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} ${SH} build.sh)
 
 do-install:
 	${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin



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