[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 5/8] use PACKAGE_NAME from config.h
From: |
Sami Kerola |
Subject: |
[PATCH 5/8] use PACKAGE_NAME from config.h |
Date: |
Wed, 9 Oct 2013 20:20:14 +0100 |
---
src/hello.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/hello.c b/src/hello.c
index 6c1fdbd..38e10e4 100644
--- a/src/hello.c
+++ b/src/hello.c
@@ -180,7 +180,7 @@ Report bugs to: %s\n"), PACKAGE_BUGREPORT);
printf (_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
#else
printf (_("%s home page: <http://www.gnu.org/software/%s/>\n"),
- PACKAGE_NAME, PACKAGE);
+ PACKAGE_NAME, PACKAGE);
#endif
fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>\n"),
stdout);
@@ -193,7 +193,7 @@ Report bugs to: %s\n"), PACKAGE_BUGREPORT);
static void
print_version (void)
{
- printf ("hello (GNU %s) %s\n", PACKAGE, VERSION);
+ printf ("%s (%s) %s\n", PACKAGE, PACKAGE_NAME, VERSION);
/* xgettext: no-wrap */
puts ("");
--
1.8.2.3
- [PATCH 1/8] allow user message to use new-generation greeting format, Sami Kerola, 2013/10/09
- [PATCH 2/8] bootstrap: update from gnulib, Sami Kerola, 2013/10/09
- [PATCH 4/8] clean up configure.ac syntax, Sami Kerola, 2013/10/09
- [PATCH 3/8] reuse AM_INIT_AUTOMAKE bug-email address, Sami Kerola, 2013/10/09
- [PATCH 5/8] use PACKAGE_NAME from config.h,
Sami Kerola <=
- [PATCH 6/8] re-indent to match with gnu coding style, Sami Kerola, 2013/10/09
- [PATCH 7/8] make copyright year pseudo dynamic, Sami Kerola, 2013/10/09
- [PATCH 8/8] make hello unicode aware, Sami Kerola, 2013/10/09