summaryrefslogtreecommitdiff
path: root/src/system.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-06-19 09:23:52 +0000
committerJim Meyering <jim@meyering.net>2004-06-19 09:23:52 +0000
commit927e4d998ea1db7d99382b825b80e89062a28ed7 (patch)
treeef17557e68df615e9d2a339ef4a579de882cf6de /src/system.h
parent877ab264886ba5c94dc2fea9535dd53b758c33a3 (diff)
downloadcoreutils-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/system.h')
-rw-r--r--src/system.h2
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;