summaryrefslogtreecommitdiff
path: root/gl/version-etc.c
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2009-11-15 16:30:10 +0100
committerSimon Josefsson <simon@josefsson.org>2009-11-15 16:30:10 +0100
commitfdde921b6d70f3178e5895465a8519153c6bf867 (patch)
treea770a8a08aa8e47416c9f185dcb0a7a6183ca977 /gl/version-etc.c
parent701fefd295989879856b66424c6cd5f38a9ec8ea (diff)
downloadgnutls-fdde921b6d70f3178e5895465a8519153c6bf867.tar.gz
Update gnulib files.
Diffstat (limited to 'gl/version-etc.c')
-rw-r--r--gl/version-etc.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/gl/version-etc.c b/gl/version-etc.c
index a580140c45..bf67c37b03 100644
--- a/gl/version-etc.c
+++ b/gl/version-etc.c
@@ -236,13 +236,17 @@ emit_bug_reporting_address (void)
for this package. Please add _another line_ saying
"Report translation bugs to <...>\n" with the address for translation
bugs (typically your translation team's web or email address). */
- printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
+ printf (_("\nReport bugs to: %s\n"), PACKAGE_BUGREPORT);
#ifdef PACKAGE_PACKAGER_BUG_REPORTS
- printf (_("Report %s bugs to <%s>.\n"), PACKAGE_PACKAGER,
+ printf (_("Report %s bugs to: %s\n"), PACKAGE_PACKAGER,
PACKAGE_PACKAGER_BUG_REPORTS);
#endif
- printf (_("%s home page: <http://www.gnu.org/software/%s/>.\n"),
+#ifdef PACKAGE_URL
+ 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);
- fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>.\n"),
+#endif
+ fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>\n"),
stdout);
}