Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Info
Commit...:f7e27c5363a8c6ce2127d931c8174356ca6b88ff
Author...:Sami Kerola
Committer:Reuben Thomas
Date.....:Wed Oct 9 20:20:14 2013 +0100
Parents..:5ac47683f107699776ebe05c5b390bc7be6a2402

Message
use PACKAGE_NAME from config.h

Changes
diff --git a/src/hello.c b/src/hello.c
line changes: +2/-2
index 6c1fdbd..38e10e4
--- 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 ("");
 

This website is licensed under AGPL-3.0. Feel free to copy!