From bbce319b2912760f8b4118c250bf2dd6bf4bdc3d Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Fri, 19 Jul 2013 16:03:49 +0100 Subject: [PATCH] build: Fix unbalanced quoting in the python dumper AC_ARG_ENABLE() Signed-off-by: Damien Lespiau --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 59d01cf..caf929c 100644 --- a/configure.ac +++ b/configure.ac @@ -104,7 +104,7 @@ AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes]) AC_ARG_ENABLE(dumper, AS_HELP_STRING([--disable-dumper], [Disable the python based register dumper (default: enabled)]), - DUMPER=$enableval], [DUMPER=yes]) + [DUMPER=$enableval], [DUMPER=yes]) if test "x$DUMPER" == xyes; then AC_DEFINE(HAVE_DUMPER, 1, [Have dumper support]) # SWIG configuration -- 2.7.4