Fix configure e-mail address
AC_INIT expects a simple e-mail address without a name; otherwise,
the following error will be produced several times during bootstrap:
configure.ac:5: warning: AC_INIT: not a literal:
ltrace-devel <ltrace-devel@lists.alioth.debian.org>
Signed-off-by: Zachary T Welch <zwelch@codesourcery.com>
diff --git a/configure.ac b/configure.ac
index e97f883..5e426cb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT([ltrace],[0.5.3],[ltrace-devel <ltrace-devel@lists.alioth.debian.org>])
+AC_INIT([ltrace],[0.5.3],[ltrace-devel@lists.alioth.debian.org])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_SRCDIR(libltrace.c)
#AC_CONFIG_MACRO_DIR([config/m4])