From 0ef2ad0771e003f1170368703d988664a943f12f Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Tue, 31 Oct 2017 19:36:13 +0100 Subject: [PATCH] Use PACKAGE_VERSION as it is known to both make and meson. --- source/theme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/theme.c b/source/theme.c index a45e8ee2..e0a5dfbb 100644 --- a/source/theme.c +++ b/source/theme.c @@ -320,7 +320,7 @@ static void rofi_theme_print_index ( ThemeWidget *widget ) void rofi_theme_print ( ThemeWidget *widget ) { if ( widget != NULL ) { - printf("/**\n * rofi -dump-theme output.\n * Rofi version: %s\n **/\n", VERSION); + printf("/**\n * rofi -dump-theme output.\n * Rofi version: %s\n **/\n", PACKAGE_VERSION); rofi_theme_print_index ( widget ); } }