From 4c4ada850f0e55314609f2f324c545cf7ea19a4c Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Wed, 11 May 2022 10:21:46 -0600 Subject: [PATCH] configure: fix the extra spaces in --enable-bindings Extra spaces between the default action assignment for the feature --enable-bindings feature, fails with: ./configure: line 12510: with_bindings: command not found fix the issue by removing the extra spaces in the assignment. Fixes: https://github.com/libcgroup/libcgroup/issues/133 Reported-by: @jeffmacdonald (github username) Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6b3fbec4..04119952 100644 --- a/configure.ac +++ b/configure.ac @@ -47,7 +47,7 @@ AC_ARG_ENABLE([bindings], with_bindings=true fi ], - [with_bindings = false]) + [with_bindings=false]) AM_CONDITIONAL([WITH_BINDINGS], [test x$with_bindings = xtrue]) # Process command line options -- 2.47.2