From b024b7a86789012411583716bc8dae48415d5b28 Mon Sep 17 00:00:00 2001 From: rbuj Date: Thu, 4 Feb 2021 12:08:40 +0100 Subject: Remove the copyright information when printing the version from the command line --- src/core/main.c | 32 ++++---------------------------- 1 file changed, 4 insertions(+), 28 deletions(-) (limited to 'src/core/main.c') diff --git a/src/core/main.c b/src/core/main.c index 19b67aff..3ca95e6f 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -110,33 +110,6 @@ log_handler (const gchar *log_domain, meta_print_backtrace (); } -/** - * Prints the version notice. This is shown when Marco is called - * with the --version switch. - */ -static void -version (void) -{ - const int latest_year = 2009; - char yearbuffer[256]; - GDate date; - - /* this is all so the string to translate stays constant. - * see how much we love the translators. - */ - g_date_set_dmy (&date, 1, G_DATE_JANUARY, latest_year); - if (g_date_strftime (yearbuffer, sizeof (yearbuffer), "%Y", &date)==0) - /* didn't work? fall back to decimal representation */ - g_sprintf (yearbuffer, "%d", latest_year); - - g_print (_("marco %s\n" - "Copyright (C) 2001-%s Havoc Pennington, Red Hat, Inc., and others\n" - "This is free software; see the source for copying conditions.\n" - "There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"), - VERSION, yearbuffer); - exit (0); -} - /** * Prints a list of which configure script options were used to * build this copy of Marco. This is actually always called @@ -471,7 +444,10 @@ main (int argc, char **argv) meta_set_syncing (meta_args.sync || (g_getenv ("MARCO_SYNC") != NULL)); if (meta_args.print_version) - version (); + { + g_print ("%s\n", PACKAGE_STRING); + exit (EXIT_SUCCESS); + } meta_select_display (meta_args.display_name); -- cgit v1.2.1