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, 4 Jan 2012 15:41:34 +0000 (10:41 -0500)
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 0ff32ae..47278c7 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"],