From 3acab58da28dd124fb4d02ceb36a18d1e4cf562a Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Tue, 20 Jun 2017 11:14:04 +0200 Subject: [PATCH] Show extension dir in version output too. Hope this helps to identify compilation issues in the future where the webextension is not found. --- src/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.c b/src/main.c index fe7d22f..ef66ef3 100644 --- a/src/main.c +++ b/src/main.c @@ -1800,6 +1800,8 @@ int main(int argc, char* argv[]) soup_get_major_version(), soup_get_minor_version(), soup_get_micro_version()); + printf("Extension dir: %s\n", + EXTENSIONDIR); return EXIT_SUCCESS; } -- 2.20.1