bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

version-etc not working with autoconf 2.61


From: Andy Wingo
Subject: version-etc not working with autoconf 2.61
Date: Sat, 21 Nov 2009 18:59:00 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.92 (gnu/linux)

Hello,

I just applied this to Guile. Perhaps something like it should go into
Gnulib?

Cheers,

Andy

commit 624c5c7c8870baf610785a821e8bb40d41db2051
Author: Andy Wingo <address@hidden>
Date:   Fri Nov 20 17:24:40 2009 +0100

    fix version-etc for older autoconf
    
    * lib/version-etc.c: Don't reference the undefined PACKAGE if
      PACKAGE_URL is undefined. Probably should go upstream.

        Modified lib/version-etc.c
diff --git a/lib/version-etc.c b/lib/version-etc.c
index 4f9de48..a7be46e 100644
--- a/lib/version-etc.c
+++ b/lib/version-etc.c
@@ -245,7 +245,7 @@ emit_bug_reporting_address (void)
   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_TARNAME);
 #endif
   fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>\n"),
         stdout);


-- 
http://wingolog.org/




reply via email to

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