]> granicus.if.org Git - curl/commitdiff
configure: spell --disable-threaded-resolver correctly
authorDaniel Stenberg <daniel@haxx.se>
Thu, 17 Jun 2010 13:07:05 +0000 (15:07 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 17 Jun 2010 13:10:08 +0000 (15:10 +0200)
Previously we only accepted the option when named
--disable-threaded-resover, which wasn't quite intended.

Reported by: Helwing Lutz

m4/curl-confopts.m4

index 5a43b1961f6f7b32e9643413f69eb9f935c98c51..fb73ef559c3cd584538caefe8c7ee5d870cc138e 100644 (file)
@@ -26,7 +26,7 @@
 dnl CURL_CHECK_OPTION_THREADED_RESOLVER
 dnl -------------------------------------------------
 dnl Verify if configure has been invoked with option
-dnl --enable-threaded-resolver or --disable-threaded-resover, and
+dnl --enable-threaded-resolver or --disable-threaded-resolver, and
 dnl set shell variable want_thres as appropriate.
 
 AC_DEFUN([CURL_CHECK_OPTION_THREADED_RESOLVER], [
@@ -34,7 +34,7 @@ AC_DEFUN([CURL_CHECK_OPTION_THREADED_RESOLVER], [
   OPT_THRES="default"
   AC_ARG_ENABLE(threaded_resolver,
 AC_HELP_STRING([--enable-threaded-resolver],[Enable threaded resolver])
-AC_HELP_STRING([--disable-threaded-resover],[Disable threaded resolver]),
+AC_HELP_STRING([--disable-threaded-resolver],[Disable threaded resolver]),
   OPT_THRES=$enableval)
   case "$OPT_THRES" in
     yes)