From b9adf86d9b64c32acfb9e2a1b0c1567b06ab8fe6 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Sun, 13 Mar 2022 10:21:48 +0100 Subject: [PATCH] package/bind: fix libxml2 build Fix the following build failure with libxml2 raised since bump to version 9.16.26 in commit 8adeaec8afacbc680edebae91524f6144926ac92: configure: error: Specifying libxml2 installation path is not supported, adjust PKG_CONFIG_PATH instead Fixes: - http://autobuild.buildroot.org/results/648d29e4cfa6a40bb6e54793c044e9c834f03a1b Signed-off-by: Fabrice Fontaine Reviewed-by: James Hilliard Signed-off-by: Arnout Vandecappelle (Essensium/Mind) (cherry picked from commit 33413b7e5326591dbfc29050a0d1136dcae868c7) Signed-off-by: Peter Korsgaard --- package/bind/bind.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/bind/bind.mk b/package/bind/bind.mk index 72f1e4dcdc..a595baabc5 100644 --- a/package/bind/bind.mk +++ b/package/bind/bind.mk @@ -67,7 +67,7 @@ BIND_CONF_OPTS += --with-gssapi=no endif ifeq ($(BR2_PACKAGE_LIBXML2),y) -BIND_CONF_OPTS += --with-libxml2=$(STAGING_DIR)/usr +BIND_CONF_OPTS += --with-libxml2 BIND_DEPENDENCIES += libxml2 else BIND_CONF_OPTS += --with-libxml2=no