diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-07-18 21:53:04 +0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-07-19 09:04:57 +0200 |
commit | ba3c7e806d3ebeb1fa66fe7ba0ee9a70447b49b0 (patch) | |
tree | 81f92e6a0cc6ff2c4460f747b64b6d8bf8ba490d | |
parent | 5a92bb63bf0657f24694b8c8c24dff04f6e96dca (diff) | |
download | buildroot-ba3c7e806d3ebeb1fa66fe7ba0ee9a70447b49b0.tar.gz buildroot-ba3c7e806d3ebeb1fa66fe7ba0ee9a70447b49b0.zip |
bind: fix build with zlib
The bind configure.in now checks for "${with_zlib}/include/zlib.h".
Remove the redundant "include/".
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/bind/bind.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/bind/bind.mk b/package/bind/bind.mk index e71eddcd7f..d478a7f6e1 100644 --- a/package/bind/bind.mk +++ b/package/bind/bind.mk @@ -33,7 +33,7 @@ BIND_CONF_OPTS = \ --enable-filter-aaaa ifeq ($(BR2_PACKAGE_ZLIB),y) -BIND_CONF_OPTS += --with-zlib=$(STAGING_DIR)/usr/include +BIND_CONF_OPTS += --with-zlib=$(STAGING_DIR)/usr BIND_DEPENDENCIES += zlib else BIND_CONF_OPTS += --without-zlib |