diff options
author | obache <obache@pkgsrc.org> | 2010-11-10 10:57:41 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-11-10 10:57:41 +0000 |
commit | c6e0da591781d90c2b10425d8fb0336a451f2abb (patch) | |
tree | 2d048934f3b7e8a0a2491f29f5d81300574b7010 /lang/ruby | |
parent | c37da5e9106ba1ab7e8a51a345e83b645e77da10 (diff) | |
download | pkgsrc-c6e0da591781d90c2b10425d8fb0336a451f2abb.tar.gz |
Exactly set TZ=UTC, or not worked as expected on Solaris (time-zone difference = 0).
Fixes PR#44037.
Diffstat (limited to 'lang/ruby')
-rw-r--r-- | lang/ruby/gem.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/ruby/gem.mk b/lang/ruby/gem.mk index 3c7d4c41fd2..2a0271dbd93 100644 --- a/lang/ruby/gem.mk +++ b/lang/ruby/gem.mk @@ -1,4 +1,4 @@ -# $NetBSD: gem.mk,v 1.1 2010/09/10 03:12:02 taca Exp $ +# $NetBSD: gem.mk,v 1.2 2010/11/10 10:57:41 obache Exp $ # # This Makefile fragment is intended to be included by packages that build # and install Ruby gems. @@ -157,7 +157,7 @@ gem-extract: fake-home ${RUN} cd ${WRKDIR} && ${SETENV} ${MAKE_ENV} \ ${RUBYGEM} unpack ${_RUBYGEM_UNPACK_OPTION} \ ${_DISTDIR:Q}/${_gem_:Q} - ${RUN} cd ${WRKDIR} && ${SETENV} ${MAKE_ENV} TZ= \ + ${RUN} cd ${WRKDIR} && ${SETENV} ${MAKE_ENV} TZ=UTC \ ${RUBYGEM} spec ${_DISTDIR:Q}/${_gem_:Q} > ${_gem_}spec . endfor .endif |