1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

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.
This commit is contained in:
Andy Wingo 2009-11-20 17:24:40 +01:00
parent 850a4c8f5f
commit d20eac70f8

View file

@ -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);