Hello, I just applied this to Guile. Perhaps something like it should go into Gnulib?
Cheers, Andy commit 624c5c7c8870baf610785a821e8bb40d41db2051 Author: Andy Wingo <wi...@pobox.com> 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/