From f71a662db4cce92f2fc53866e0fc27ae25177e9c Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Tue, 18 May 2021 16:24:59 +0200 Subject: [PATCH] Fix unportable test(1) operator. (#8616) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c36328cd8d..c8a56cf7c8 100644 --- a/configure.ac +++ b/configure.ac @@ -125,7 +125,7 @@ AC_LINK_IFELSE( [have_ld_version_script=yes; AC_MSG_RESULT(yes)], [have_ld_version_script=no; AC_MSG_RESULT(no)]) LDFLAGS=$save_LDFLAGS -AM_CONDITIONAL([HAVE_LD_VERSION_SCRIPT], [test "$have_ld_version_script" == "yes"]) +AM_CONDITIONAL([HAVE_LD_VERSION_SCRIPT], [test "$have_ld_version_script" = "yes"]) # Checks for header files. AC_HEADER_STDC