From d69846132a0e172521ee10741069ff60152ad8a8 Mon Sep 17 00:00:00 2001 From: "David H. Gutteridge" Date: Wed, 6 Mar 2019 20:12:18 -0500 Subject: configure.ac: fix portability issue with test "test ... ==" isn't a portable expression, change to POSIX "=". --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 9da29e8a..dd0d201b 100644 --- a/configure.ac +++ b/configure.ac @@ -194,7 +194,7 @@ dnl ========== EEL/CAJA OMIT SELF CHECK ==================================== AC_ARG_ENABLE(self-check, AC_HELP_STRING([--disable-self-check], [build without self check])) msg_self_check=yes -if test "x$enable_self_check" == "xno"; then +if test "x$enable_self_check" = "xno"; then msg_self_check=no AC_DEFINE(EEL_OMIT_SELF_CHECK, 1, [define to disable eel self check]) AC_DEFINE(CAJA_OMIT_SELF_CHECK, 1, [define to disable caja self check]) -- cgit v1.2.1