On Tue, Nov 3, 2015 at 6:44 PM, William J. Bowman <[email protected]> wrote: > On Tue, Nov 03, 2015 at 06:37:59PM -0500, Jon Zeppieri wrote: >> Okay, that is odd. I'll try reinstalling from scratch on my own machine to >> make sure I didn't introduce a bug at some point. That's also where my >> zoneinfo DB is too, so I'd expect it to behave the same way. I am running >> macos, but I don't see why that should make any difference. > It's possible that I have something misconfigured, but my locale and > time seem to work properly everywhere else.
I think it's far more likely to be a bug in my detection code. So, your /etc/localtime should be a symlink. What path does it point to? And, in particular, is the path that it points to absolute or relative? On my system, I have: /etc/localtime -> /usr/share/zoneinfo/America/New_York Since it looked from your stack trace like gregor was trying to find ../usr/share/zoneinfo/America/New_York, that makes me think that the trouble may start with this symlink. Those two paths would point to the same file, of course, since we're starting in /etc. So I probably need to canonicalize the linked path. -Jon -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

