summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2013-03-04 15:59:00 +0000
committerDamien Lespiau <damien.lespiau@intel.com>2013-03-04 15:59:00 +0000
commit764b9e503e83d7ad9d7f7dae61ab24763b7cac9c (patch)
treefb25a85437ecc7a3ba4c57a566fb119c9f10e24e /configure.ac
parent45919917697572214106d0f996d9ef5b33901600 (diff)
build: Fix typo if the test setting enable_debugger
Of course, a 'x' need to be inserted there. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 1c4e1c652..f65942f6f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -150,7 +150,7 @@ if test "x$BUILD_SHADER_DEBUGGER" != xno; then
fi
AM_CONDITIONAL(BUILD_SHADER_DEBUGGER, [test "x$BUILD_SHADER_DEBUGGER" != xno])
-AS_IF([test "x$BUILD_SHADER_DEBUGGER" != no],
+AS_IF([test "x$BUILD_SHADER_DEBUGGER" != xno],
[enable_debugger=yes], [enable_debugger=no])
# -----------------------------------------------------------------------------