bug-hello
[Top][All Lists]
Advanced

[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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]