From e4f1b69aae2de7cb867d9cd2e50db3670f8fcd63 Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Mon, 28 Feb 2011 17:39:59 +0100 Subject: [PATCH] configure.in: fix autoconf error Autoconf expects an email in AC_INIT, otherwise it screams: configure.in:18: warning: AC_INIT: not a literal: http://sourceforge.net/tracker/?group_id=218421&atid=1043649 Remove the URL, "/" and "&" are not allowed there. Signed-off-by: Jiri Slaby Signed-off-by: Jan Safranek --- configure.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.in b/configure.in index fb982d30..63f533a1 100644 --- a/configure.in +++ b/configure.in @@ -15,8 +15,7 @@ AC_PREREQ(2.61) # In following section update all occurences of version, including soname -AC_INIT([libcgroup], 0.37, - [http://sourceforge.net/tracker/?group_id=218421&atid=1043649]) +AC_INIT([libcgroup], 0.37) AM_INIT_AUTOMAKE([foreign dist-bzip2]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) -- 2.47.2