summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorOlivier Brunel <jjk@jjacky.com>2016-06-26 21:30:49 +0200
committerAllan McRae <allan@archlinux.org>2016-08-30 10:10:40 +0200
commit56ae9603768bdc850f32bc789a474ae836305033 (patch)
tree48cdbad2cc6c5c1fe5bb44b2e83d840462be7b37 /configure.ac
parentbe1ffedaf6fc44aeb9da235d64889dac71e9bf24 (diff)
downloadpacman-56ae9603768bdc850f32bc789a474ae836305033.tar.gz
pacman-56ae9603768bdc850f32bc789a474ae836305033.tar.xz
configure.ac: Fix handling --with-libcurl
It was reported being --with-libcurl in the help (and the check for libcurl being installed used $with_libcurl accordingly), but the option handling was set using $with_curl and, therefore, expected option --with-curl. In the end, --with-libcurl wasn't recognized, and --with-curl had no effect. Signed-off-by: Olivier Brunel <jjk@jjacky.com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index dd4ac041..03e96705 100644
--- a/configure.ac
+++ b/configure.ac
@@ -131,9 +131,9 @@ AC_ARG_WITH(gpgme,
[], [with_gpgme=check])
# Help line for using libcurl
-AC_ARG_WITH(curl,
+AC_ARG_WITH(libcurl,
AS_HELP_STRING([--with-libcurl], [use libcurl for the internal downloader]),
- [], [with_curl=check])
+ [], [with_libcurl=check])
# Help line for documentation
AC_ARG_ENABLE(doc,