package/libnfs: fix pthread option

Fix typo added by commit f9f5b3a6cb

Fixes: f9f5b3a6cb

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
This commit is contained in:
Fabrice Fontaine 2024-03-14 22:41:25 +01:00 committed by Arnout Vandecappelle
parent e2f87b3c15
commit 9a5160ed5a

View File

@ -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))