faridz@apache.org wrote: > Author: faridz > Date: Fri Jul 4 02:39:58 2008 > New Revision: 673978 > > URL: http://svn.apache.org/viewvc?rev=673978&view=rev > Log: > 2008-07-04 Farid Zaripov > > * etc/config/makefile.rules: Define local shell variable > TZ to export its value. I assume this change is necessary to complete this one: http://svn.apache.org/viewvc?view=rev&revision=561060 Correct? (If so, it would be helpful to explain this in the ChangeLog entry, and possibly also document it in a comment above the rule in makefile.rules). Martin > > Modified: > stdcxx/branches/4.2.x/etc/config/makefile.rules > > Modified: stdcxx/branches/4.2.x/etc/config/makefile.rules > URL: http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/etc/config/makefile.rules?rev=673978&r1=673977&r2=673978&view=diff > ============================================================================== > --- stdcxx/branches/4.2.x/etc/config/makefile.rules (original) > +++ stdcxx/branches/4.2.x/etc/config/makefile.rules Fri Jul 4 02:39:58 2008 > @@ -168,6 +168,7 @@ > PATH=$$PATH:.; \ > TOPDIR=$(TOPDIR); \ > TMPDIR=$${TMPDIR:-/tmp}/stdcxx-run-$$$$; \ > + TZ=$(TZ); \ > export LD_LIBRARY_PATH PATH TMPDIR TOPDIR TZ; \ > trap "rm -rf $$TMPDIR" HUP INT QUIT TERM EXIT; \ > mkdir -p $$TMPDIR; \ > @@ -181,6 +182,7 @@ > PATH=$$PATH:$(LIBDIR):$(BINDIR):.; \ > TOPDIR=$(TOPDIR); \ > TMPDIR=$${TMPDIR:-/tmp}/stdcxx-run-$$$$; \ > + TZ=$(TZ); \ > export LD_LIBRARY_PATH PATH TMPDIR TOPDIR TZ; \ > trap "rm -rf $$TMPDIR" HUP INT QUIT TERM EXIT; \ > mkdir -p $$TMPDIR; \ > >