diff options
Diffstat (limited to 'src/core/wee-debug.c')
-rw-r--r-- | src/core/wee-debug.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/core/wee-debug.c b/src/core/wee-debug.c index 9bd33b4ba..9dc9c2ec7 100644 --- a/src/core/wee-debug.c +++ b/src/core/wee-debug.c @@ -571,12 +571,18 @@ debug_libs_cb (const void *pointer, void *data, void debug_directories () { + char *extra_libdir; + + extra_libdir = getenv ("WEECHAT_EXTRA_LIBDIR"); + gui_chat_printf (NULL, ""); gui_chat_printf (NULL, _("Directories:")); - gui_chat_printf (NULL, " home : %s (%s: %s)", + gui_chat_printf (NULL, " home: %s (%s: %s)", weechat_home, _("default"), WEECHAT_HOME); - gui_chat_printf (NULL, " lib : %s", WEECHAT_LIBDIR); - gui_chat_printf (NULL, " share : %s", WEECHAT_SHAREDIR); + gui_chat_printf (NULL, " lib: %s", WEECHAT_LIBDIR); + gui_chat_printf (NULL, " lib (extra): %s", + (extra_libdir && extra_libdir[0]) ? extra_libdir : "-"); + gui_chat_printf (NULL, " share: %s", WEECHAT_SHAREDIR); gui_chat_printf (NULL, " locale: %s", LOCALEDIR); } |