From 305abd7a302a7859eabc934eba0ffb85cd3657ff Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Mon, 1 Apr 2024 17:40:12 -0600 Subject: [PATCH] package/libxcrypt: support host package build This is needed by host-systemd. Signed-off-by: James Hilliard [yann.morin.1998@free.fr: set the host _CONF_OPTS] Signed-off-by: Yann E. MORIN --- package/libxcrypt/libxcrypt.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/libxcrypt/libxcrypt.mk b/package/libxcrypt/libxcrypt.mk index 9ad030fbd2..8cb6751442 100644 --- a/package/libxcrypt/libxcrypt.mk +++ b/package/libxcrypt/libxcrypt.mk @@ -13,8 +13,11 @@ LIBXCRYPT_AUTORECONF = YES # Some warnings turn into errors with some sensitive compilers LIBXCRYPT_CONF_OPTS = --disable-werror +HOST_LIBXCRYPT_CONF_OPTS = --disable-werror # Disable obsolete and unsecure API LIBXCRYPT_CONF_OPTS += --disable-obsolete_api +HOST_LIBXCRYPT_CONF_OPTS += --disable-obsolete_api $(eval $(autotools-package)) +$(eval $(host-autotools-package))