From 9b3d08d90c40e4fbc4882e0be9585b7673d12a5e Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 18 Aug 2015 03:07:54 -0400 Subject: build: fix == bashism The test tool only has = for comparison, not ==. The latter is accepted by bash and other shells, but is not in POSIX. Signed-off-by: Mike Frysinger Signed-off-by: Paul Moore --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 357cf87..75f721e 100644 --- a/configure.ac +++ b/configure.ac @@ -121,7 +121,7 @@ AS_IF([test "$enable_python" = yes], [ ]) AM_CONDITIONAL([ENABLE_PYTHON], [test "$enable_python" = yes]) AC_DEFINE_UNQUOTED([ENABLE_PYTHON], - [$(test "$enable_python" == yes && echo 1 || echo 0)], + [$(test "$enable_python" = yes && echo 1 || echo 0)], [Python bindings build flag.]) dnl #### -- cgit v1.2.1