[Buildroot] [git commit branch/2023.11.x] package/libnfs: fix pthread option

Peter Korsgaard peter at korsgaard.com
Thu Mar 21 20:51:05 UTC 2024


commit: https://git.buildroot.net/buildroot/commit/?id=3c80acd0576cd7968549ebf5cbc17c7a6cb53e3c
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2023.11.x

Fix typo added by commit f9f5b3a6cbc4e62beefdd0448842ef0c8c3eb6f6

Fixes: f9f5b3a6cbc4e62beefdd0448842ef0c8c3eb6f6

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout at mind.be>
(cherry picked from commit 9a5160ed5abded9d2b843a2422a48d4964cff42e)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/libnfs/libnfs.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libnfs/libnfs.mk b/package/libnfs/libnfs.mk
index eb919406f3..e5e302a4f8 100644
--- a/package/libnfs/libnfs.mk
+++ b/package/libnfs/libnfs.mk
@@ -17,9 +17,9 @@ LIBNFS_DEPENDENCIES += libtirpc
 endif
 
 ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
-LIBNFS_CONF_OPTS += --enable-threads
+LIBNFS_CONF_OPTS += --enable-pthread
 else
-LIBNFS_CONF_OPTS += --disable-threads
+LIBNFS_CONF_OPTS += --disable-pthread
 endif
 
 $(eval $(autotools-package))



More information about the buildroot mailing list