Skip to content

Commit 4c57829

Browse files
authored
configure.ac: fix bashism (#803)
'==' is a bashism, use POSIX '=' instead.
1 parent 018b4ac commit 4c57829

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ if test "x$enable_multithreading" != "xno" ; then
386386
CC="$PTHREAD_CC"
387387
CXX="$PTHREAD_CXX"
388388
],[HAVE_PTHREAD=no])
389-
if test "x${HAVE_PTHREAD}" == "xno"; then
389+
if test "x${HAVE_PTHREAD}" = "xno"; then
390390
AC_MSG_WARN("pthread support, needed for multithreading, is not found")
391391
fi
392392
fi

0 commit comments

Comments
 (0)