From 8a023fec0936a9eabbf8eb51d28c9c27eb876122 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 11 Apr 2015 13:11:10 -0600 Subject: [PATCH] localtime: Default zoneinfo directory is /etc/zoneinfo instead of /usr/local/etc/zoneinfo which results in a longer pathname than the default 32 characer MAX --- libc/time/lib_localtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/time/lib_localtime.c b/libc/time/lib_localtime.c index cf2694ba82e..246aaab415e 100644 --- a/libc/time/lib_localtime.c +++ b/libc/time/lib_localtime.c @@ -67,7 +67,7 @@ #ifdef CONFIG_LIBC_TZDIR # define TZDIR CONFIG_LIBC_TZDIR #else -# define TZDIR "/usr/local/etc/zoneinfo" +# define TZDIR "/etc/zoneinfo" #endif /* Time definitions *********************************************************/