From: Kamalesh Babulal Date: Wed, 11 May 2022 16:21:46 +0000 (-0600) Subject: configure: fix the extra spaces in --enable-bindings X-Git-Tag: v2.0.2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c4ada850f0e55314609f2f324c545cf7ea19a4c;p=thirdparty%2Flibcgroup.git 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 --- 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