From: Bartosz Golaszewski Date: Wed, 8 Feb 2017 11:02:11 +0000 (+0100) Subject: configure: fix variable assignment X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f7b063a25b2d5efa206247b603b75e01e329afd6;p=qemu-gpiodev%2Flibgpiod.git configure: fix variable assignment We must not use spaces in assignment. Signed-off-by: Bartosz Golaszewski --- 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],