summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2009-11-20 17:24:40 +0100
committerAndy Wingo <wingo@pobox.com>2009-11-21 19:03:22 +0100
commitd20eac70f87511c198dd70e6e6a152d2ac6c6933 (patch)
treea22c760d27033feb5b31f43eb79691242a0bcc92 /lib
parent850a4c8f5f076fb5968c2204eefadf91dc7c56bd (diff)
downloadguile-d20eac70f87511c198dd70e6e6a152d2ac6c6933.tar.gz
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.
Diffstat (limited to 'lib')
-rw-r--r--lib/version-etc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/version-etc.c b/lib/version-etc.c
index 4f9de4800..a7be46ead 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);