From f7b063a25b2d5efa206247b603b75e01e329afd6 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 8 Feb 2017 12:02:11 +0100 Subject: [PATCH] configure: fix variable assignment We must not use spaces in assignment. Signed-off-by: Bartosz Golaszewski --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e60583a..5b9192c 100644 --- a/configure.ac +++ b/configure.ac @@ -64,7 +64,7 @@ AC_ARG_ENABLE([tools], with_tools=false fi ], - [with_tools = false]) + [with_tools=false]) AM_CONDITIONAL([WITH_TOOLS], [test x$with_tools = xtrue]) AC_DEFUN([FUNC_NOT_FOUND_TOOLS], -- 2.30.2