Factored out the bug report mailing address.
authorJohn Darrington <john@darrington.wattle.id.au>
Sun, 21 Dec 2003 23:58:04 +0000 (23:58 +0000)
committerJohn Darrington <john@darrington.wattle.id.au>
Sun, 21 Dec 2003 23:58:04 +0000 (23:58 +0000)
configure.ac
src/cmdline.c

index b2406a6f6113cbcfc15bec83f20d4ab095cf281e..b55a14651ab4c5ff9d2b60efd5fafdf258d8e4ea 100644 (file)
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
 
 dnl Initialize.
 AC_PREREQ(2.58)
-AC_INIT(pspp, 0.3.1)
+AC_INIT(pspp, 0.3.1,bug-gnu-pspp@gnu.org)
 AC_CONFIG_HEADERS([config.h])
 AM_INIT_AUTOMAKE
 
index cd29b9903de3c0b12230da62b1f4264221fb9c0d..a1a5281c3fb89819f363a99e0273c9a0202232b1 100644 (file)
@@ -242,8 +242,7 @@ N_("PSPP, a program for statistical analysis of sample data.\n"
 "\n");
 
 /* Message that describes PSPP command-line syntax, continued. */
-static const char post_syntax_message[] = 
-N_("\nReport bugs to <bug-gnu-pspp@gnu.org>.\n");
+static const char post_syntax_message[] = N_("\nReport bugs to <%s>.\n");
 
 /* Writes a syntax description to stdout and terminates. */
 static void
@@ -251,7 +250,7 @@ usage (void)
 {
   printf (gettext (pre_syntax_message), pgmname);
   outp_list_classes ();
-  printf (gettext (post_syntax_message));
+  printf (gettext (post_syntax_message),PACKAGE_BUGREPORT);
 
   err_hcf (1);
 }