diff options
author | Kamil Dudka <kdudka@redhat.com> | 2010-08-19 16:38:22 +0200 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2010-08-19 16:43:40 +0200 |
commit | d0dea8f8699224ac1b6888bf6da7cfc71de213ca (patch) | |
tree | bf76430a23aa6cf1728c3360311e80f1f6fd89d5 | |
parent | ab81f6c7c48e796baa4ba92d3fd121eeeba287a7 (diff) | |
download | curl-d0dea8f8699224ac1b6888bf6da7cfc71de213ca.tar.gz |
AC_INIT: avoid a warning with autoconf 2.66
It was complaining about the '=>' operator, introduced in e3fc0d5.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index db04447fe..a389cfd85 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 |