Add missing comma to gnome-proxy AC_ARG_WITH
authorAlexandre Rostovtsev <tetromino@gmail.com>
Wed, 19 Oct 2011 14:31:17 +0000 (10:31 -0400)
committerDan Winship <danw@gnome.org>
Wed, 19 Oct 2011 15:09:43 +0000 (11:09 -0400)
This was causing "--without-gnome-proxy" to be treated as
"--with-gnome-proxy=check".

https://bugzilla.gnome.org/show_bug.cgi?id=662203

configure.ac

index b7833d4..38d3114 100644 (file)
@@ -66,7 +66,7 @@ dnl *** Checks for GNOME proxy backend ***
 dnl **************************************
 AC_ARG_WITH(gnome-proxy,
     [AC_HELP_STRING([--with-gnome-proxy],
-                    [support for GNOME proxy configuration @<:@default=check@:>@])]
+                    [support for GNOME proxy configuration @<:@default=check@:>@])],
     [],
     [with_gnome_proxy=check])
 AS_IF([test "x$with_gnome_proxy" != "xno"],