svn commit: r381142 - head/devel/newtonsoft-json
Antoine Brodin
antoine at FreeBSD.org
Thu Mar 12 18:40:37 UTC 2015
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 && \
More information about the svn-ports-all
mailing list