diff options
author | obache <obache> | 2010-11-10 10:57:41 +0000 |
---|---|---|
committer | obache <obache> | 2010-11-10 10:57:41 +0000 |
commit | 1beaed09d571b3871b42a2ed4af30f1eec15c22b (patch) | |
tree | 2d048934f3b7e8a0a2491f29f5d81300574b7010 /lang/ruby | |
parent | 234ccbef72f472a4ca3a458e6bd8cc2df1f29008 (diff) | |
download | pkgsrc-1beaed09d571b3871b42a2ed4af30f1eec15c22b.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 |