From cff6724a9ab14b8fca5ced499ed6e517b48376a7 Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Thu, 30 Oct 2025 22:41:52 +0100 Subject: [PATCH] package/bind: drop unrecognized option Buildroot commits 7b43e248180ad3b3dd1804687bc4457f29a88137 and 8adeaec8afacbc680edebae91524f6144926ac92 removed the possibility for static builds but forgot to remove some related _CONF_OPTS. Signed-off-by: Bernd Kuhls Signed-off-by: Julien Olivain (cherry picked from commit 636b2a8503f437dfe91ce0c01638c69458342a96) Signed-off-by: Thomas Perale --- package/bind/bind.mk | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/package/bind/bind.mk b/package/bind/bind.mk index 350f6c6fbe..11730b6e7e 100644 --- a/package/bind/bind.mk +++ b/package/bind/bind.mk @@ -109,16 +109,6 @@ else BIND_CONF_OPTS += --with-readline=no endif -ifeq ($(BR2_STATIC_LIBS),y) -BIND_CONF_OPTS += \ - --without-dlopen \ - --without-libtool -else -BIND_CONF_OPTS += \ - --with-dlopen \ - --with-libtool -endif - define BIND_TARGET_REMOVE_SERVER rm -rf $(addprefix $(TARGET_DIR)/usr/sbin/, $(BIND_TARGET_SERVER_SBIN)) endef