From f62c467258e0261811a2e61d56af5ad4cc5a030a Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Wed, 27 Sep 2017 15:57:45 -0400 Subject: main(): Use PACKAGE_VERSION_GIT from temporary version.c --- diff --git a/src/main.c b/src/main.c index 277dbd3..c03ff66 100644 --- a/src/main.c +++ b/src/main.c @@ -29,6 +29,8 @@ #include "application.h" +extern const char *PACKAGE_VERSION_GIT; + static gchar *opt_profile; static gboolean opt_private; static gboolean opt_version; @@ -68,7 +70,7 @@ main(int argc, char *argv[]) } if (G_UNLIKELY(opt_version)) { - g_print("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION); + g_print("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION_GIT); g_print("Copyright (C) %s %s\n", "2017", "Patrick McDermott"); g_print("License GPLv3+: GNU GPL version 3 or later " ".\n" -- cgit v0.9.1