summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2022-04-19 14:16:04 +0200
committerLubomir Rintel <lkundrak@v3.sk>2022-04-19 14:16:04 +0200
commit62537d15d26377a11249adc4809419b92423d3b2 (patch)
tree4fa52619f6c673c304ba51d228eb4a6c5280e075
parenta1ff31db3b473ccc35f754265395c6dee0e3926c (diff)
configure.ac: fix a syntax errorlr/ac-threads
Fixes this error: checking whether more special flags are required for pthreads... no checking for PTHREAD_PRIO_INHERIT... yes ./configure: line 30294: ,as_fn_error: command not found checking for a Python interpreter with version >= 3... python checking for python... /usr/bin/python
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 24107f163b..42f6d213fc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1263,7 +1263,7 @@ else
fi
AC_SUBST(NM_LOG_COMPILER, 'LOG_COMPILER = "$(top_srcdir)/tools/run-nm-test.sh" --called-from-make "$(abs_top_builddir)" "$(LIBTOOL)" "$(with_valgrind)" "'"$with_valgrind_suppressions"'" --launch-dbus=auto')
-AX_PTHREAD([,AC_MSG_ERROR([Threads are required for the NetworkManager tests])])
+AX_PTHREAD([], [AC_MSG_ERROR([Threads are required for the NetworkManager tests])])
if test -n "$PYTHON" ; then
AM_PATH_PYTHON([], [], [])