From: Jim Meyering Date: Sat, 19 Jun 2004 09:23:52 +0000 (+0000) Subject: (case_GETOPT_VERSION_CHAR): Switch back to using GNU_PACKAGE (from X-Git-Tag: v5.3.0~1317 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=927e4d998ea1db7d99382b825b80e89062a28ed7;p=thirdparty%2Fcoreutils.git (case_GETOPT_VERSION_CHAR): Switch back to using GNU_PACKAGE (from PACKAGE) once again. This restores `GNU' to the parenthesized package name in --version output. Before, the first argument from AC_INIT, `GNU coreutils', would be propagated to the PACKAGE variable. Now, `GNU ' is trimmed. Reported by Richard Stallman. --- diff --git a/src/system.h b/src/system.h index ba25fddf03..25c03786e7 100644 --- a/src/system.h +++ b/src/system.h @@ -620,7 +620,7 @@ enum #define case_GETOPT_VERSION_CHAR(Program_name, Authors) \ case GETOPT_VERSION_CHAR: \ - version_etc (stdout, Program_name, PACKAGE, VERSION, Authors, \ + version_etc (stdout, Program_name, GNU_PACKAGE, VERSION, Authors, \ (char *) NULL); \ exit (EXIT_SUCCESS); \ break;