projects
/
buildroot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c68d2d
)
package/dhcp: add missing dependency on zlib
author
Thomas Petazzoni
<thomas.petazzoni@bootlin.com>
Mon, 22 Apr 2019 20:37:48 +0000
(22:37 +0200)
committer
Thomas Petazzoni
<thomas.petazzoni@bootlin.com>
Mon, 22 Apr 2019 20:37:48 +0000
(22:37 +0200)
When BR2_PACKAGE_ZLIB=y, we enable zlib support in the bind included
in dhcp, but we forget to add zlib to DHCP_DEPENDENCIES, so it doesn't
get built before dhcp, causing build failures.
Fixes:
http://autobuild.buildroot.net/results/
5a33057ceaf3f53e6ba9deab3f214a4c8a644352
/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/dhcp/dhcp.mk
patch
|
blob
|
history
diff --git
a/package/dhcp/dhcp.mk
b/package/dhcp/dhcp.mk
index 812e4870b92b1e9a5d1e826f6424f3cd2bbff7c3..9e7444eea61f846e842e39069ab48f8ecbb078ba 100644
(file)
--- a/
package/dhcp/dhcp.mk
+++ b/
package/dhcp/dhcp.mk
@@
-45,6
+45,7
@@
DHCP_CONF_OPTS += --enable-delayed-ack
endif
ifeq ($(BR2_PACKAGE_ZLIB),y)
+DHCP_DEPENDENCIES += zlib
DHCP_BIND_CONF_OPTS += --with-zlib
else
DHCP_BIND_CONF_OPTS += --without-zlib