diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2015-03-13 02:40:35 +0800 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2015-03-13 02:40:35 +0800 |
commit | e296897f6502323ff4848693a46976ec1ada829e (patch) | |
tree | 47cdff8424f31caebdcf8f2d00d42c7aa72490e0 /devel | |
parent | 9f55879596de9dd4360685ed285f827f00fceef7 (diff) | |
download | freebsd-ports-gnome-e296897f6502323ff4848693a46976ec1ada829e.tar.gz freebsd-ports-gnome-e296897f6502323ff4848693a46976ec1ada829e.tar.zst freebsd-ports-gnome-e296897f6502323ff4848693a46976ec1ada829e.zip |
Respect MAKE_ENV (and unbreak when no TZ is set)
Reported by: pkg-fallout
Diffstat (limited to 'devel')
-rw-r--r-- | devel/newtonsoft-json/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/newtonsoft-json/Makefile b/devel/newtonsoft-json/Makefile index c500bb186681..272009ec27f1 100644 --- a/devel/newtonsoft-json/Makefile +++ b/devel/newtonsoft-json/Makefile @@ -25,15 +25,15 @@ PLIST_FILES= lib/mono/Newtonsoft.Json/Newtonsoft.Json.dll \ 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 && \ |