diff options
author | Jim Meyering <jim@meyering.net> | 2004-06-19 09:23:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-06-19 09:23:52 +0000 |
commit | 927e4d998ea1db7d99382b825b80e89062a28ed7 (patch) | |
tree | ef17557e68df615e9d2a339ef4a579de882cf6de /src | |
parent | 877ab264886ba5c94dc2fea9535dd53b758c33a3 (diff) | |
download | coreutils-927e4d998ea1db7d99382b825b80e89062a28ed7.tar.xz |
(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.
Diffstat (limited to 'src')
-rw-r--r-- | src/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system.h b/src/system.h index ba25fddf0..25c03786e 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; |