Skip to content

Commit

Permalink
configure.ac: fix bashism
Browse files Browse the repository at this point in the history
'==' is a bashism, use POSIX '=' instead.
  • Loading branch information
thesamesam committed Feb 13, 2025
1 parent 1507800 commit f872c6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ if test "x$enable_multithreading" != "xno" ; then
CC="$PTHREAD_CC"
CXX="$PTHREAD_CXX"
],[HAVE_PTHREAD=no])
if test "x${HAVE_PTHREAD}" == "xno"; then
if test "x${HAVE_PTHREAD}" = "xno"; then
AC_MSG_WARN("pthread support, needed for multithreading, is not found")
fi
fi
Expand Down

0 comments on commit f872c6d

Please sign in to comment.