Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Mar 2015 18:40:36 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r381142 - head/devel/newtonsoft-json
Message-ID:  <201503121840.t2CIeaUX052393@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Thu Mar 12 18:40:35 2015
New Revision: 381142
URL: https://svnweb.freebsd.org/changeset/ports/381142
QAT: https://qat.redports.org/buildarchive/r381142/

Log:
  Respect MAKE_ENV (and unbreak when no TZ is set)
  
  Reported by:	pkg-fallout

Modified:
  head/devel/newtonsoft-json/Makefile

Modified: head/devel/newtonsoft-json/Makefile
==============================================================================
--- head/devel/newtonsoft-json/Makefile	Thu Mar 12 18:28:24 2015	(r381141)
+++ head/devel/newtonsoft-json/Makefile	Thu Mar 12 18:40:35 2015	(r381142)
@@ -25,15 +25,15 @@ PLIST_FILES=	lib/mono/Newtonsoft.Json/Ne
 		libdata/pkgconfig/Newtonsoft.Json.pc
 
 do-build:
-	(cd ${WRKSRC}/Src/Newtonsoft.Json && xbuild Newtonsoft.Json.csproj \
+	(cd ${WRKSRC}/Src/Newtonsoft.Json && ${SETENV} ${MAKE_ENV} xbuild Newtonsoft.Json.csproj \
 		/property:SignAssembly=true \
 		/property:AssemblyOriginatorKeyFile=Dynamic.snk \
 		/property:Configuration=Release \
 		/property:DefineConstants='SIGNED NET45 TRACE')
 	(cd ${WRKSRC}/Src/Newtonsoft.Json/bin/Release/Net45 && \
-		monodis Newtonsoft.Json.dll --output=Newtonsoft.Json.il)
+		${SETENV} ${MAKE_ENV} monodis Newtonsoft.Json.dll --output=Newtonsoft.Json.il)
 	(cd ${WRKSRC}/Src/Newtonsoft.Json/bin/Release/Net45 && \
-		ilasm /dll /key:../../../Dynamic.snk Newtonsoft.Json.il)
+		${SETENV} ${MAKE_ENV} ilasm /dll /key:../../../Dynamic.snk Newtonsoft.Json.il)
 
 do-install:
 	(cd ${WRKSRC}/Src/Newtonsoft.Json/bin/Release/Net45 && \



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