Skip to content

Commit

Permalink
Fix typo in configure check
Browse files Browse the repository at this point in the history
Signed-off-by: Quincey Koziol <[email protected]>
  • Loading branch information
qkoziol committed Jul 15, 2024
1 parent 95d6a8c commit a7da18c
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 @@ -2452,7 +2452,7 @@ if test "X${enable_concurrency}" = "Xyes" -a "X$THREADS" = "Xno"; then
fi

# The concurrency and threadsafe options are mutually exclusive
if test "X${enable_concurrency}" = "Xyes" -a test "X${enable_threadsafe}" = "Xyes"; then
if test "X${enable_concurrency}" = "Xyes" -a "X${enable_threadsafe}" = "Xyes"; then
AC_MSG_ERROR([--enable-threadsafe and --enable-concurrency are mutually exclusive])
fi

Expand Down

0 comments on commit a7da18c

Please sign in to comment.