]> git.ipfire.org Git - thirdparty/libcgroup.git/commitdiff
configure: fix the extra spaces in --enable-bindings
authorKamalesh Babulal <kamalesh.babulal@oracle.com>
Wed, 11 May 2022 16:21:46 +0000 (10:21 -0600)
committerTom Hromatka <tom.hromatka@oracle.com>
Wed, 11 May 2022 16:22:01 +0000 (10:22 -0600)
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 <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
configure.ac

index 6b3fbec4e994e002e21cd40d8fda0f4d514d0a40..04119952bf4da4b49ecb060542b27c7cd82aaace 100644 (file)
@@ -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