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-21 09:59:51 +0200
commitd29393ffa6683861b755481c5dac4d13e651f9b7 (patch)
tree76c67807a7bba853da6d62ef62041e23c343594a
parent89e3df41472bd0e2fcb194f306659b9443951e75 (diff)
downloadNetworkManager-d29393ffa6683861b755481c5dac4d13e651f9b7.tar.gz
configure.ac: fix a syntax error
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 Fixes: 3affccf29b53 ('tests: fix undefined references to pthread') (cherry picked from commit a8284b1d3b967789066c76c39660a91565fb7833)
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 5fb56feca1..28869aa25c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1273,7 +1273,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([], [], [])