From 525f55c9b8dcfb0cfe1075ba4b1014443c7c3bb6 Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Thu, 23 Feb 2017 22:46:03 +0100 Subject: [PATCH] Fix portability of test use. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2a31382f8..0c054cc54 100644 --- a/configure.ac +++ b/configure.ac @@ -381,7 +381,7 @@ fi AC_ARG_WITH([lzo2], AS_HELP_STRING([--with-lzo2], [Build with LZO support from liblzo2])) -if test "x$with_lzo2" == "xyes"; then +if test "x$with_lzo2" = "xyes"; then AC_CHECK_HEADERS([lzo/lzoconf.h lzo/lzo1x.h]) AC_CHECK_LIB(lzo2,lzo1x_decompress_safe) fi -- 2.47.3