diff options
author | Andy Wingo <wingo@pobox.com> | 2009-11-20 17:24:40 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-11-21 19:03:22 +0100 |
commit | d20eac70f87511c198dd70e6e6a152d2ac6c6933 (patch) | |
tree | a22c760d27033feb5b31f43eb79691242a0bcc92 /lib | |
parent | 850a4c8f5f076fb5968c2204eefadf91dc7c56bd (diff) | |
download | guile-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.c | 2 |
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); |