From: Kamil Dudka Date: Thu, 19 Aug 2010 14:38:22 +0000 (+0200) Subject: AC_INIT: avoid a warning with autoconf 2.66 X-Git-Tag: curl-7_21_2~154 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0dea8f8699224ac1b6888bf6da7cfc71de213ca;p=thirdparty%2Fcurl.git AC_INIT: avoid a warning with autoconf 2.66 It was complaining about the '=>' operator, introduced in e3fc0d5. --- diff --git a/configure.ac b/configure.ac index db04447fea..a389cfd85e 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) dnl We don't know the version number "statically" so we use a dash here -AC_INIT([curl], [-], [a suitable curl mailing list => http://curl.haxx.se/mail/]) +AC_INIT([curl], [-], [a suitable curl mailing list: http://curl.haxx.se/mail/]) CURL_OVERRIDE_AUTOCONF