diff options
author | Alexander Clouter <alex@digriz.org.uk> | 2011-05-16 22:41:54 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-05-16 22:41:54 +0200 |
commit | a7e78f974e4536c23904cb5714ce1a917b3f420e (patch) | |
tree | ef612f795cf978d56e824884352932e736e37cca /package/dropbear/dropbear.mk | |
parent | 017e3061fdd62d42ffb851057b67e6d96b1fd47a (diff) |
dropbear: disable zlib support when built with small option
Closes #3733
Signed-off-by: Alexander Clouter <alex@digriz.org.uk>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/dropbear/dropbear.mk')
-rw-r--r-- | package/dropbear/dropbear.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/dropbear/dropbear.mk b/package/dropbear/dropbear.mk index d73e99346..6ef5dec44 100644 --- a/package/dropbear/dropbear.mk +++ b/package/dropbear/dropbear.mk @@ -7,7 +7,6 @@ DROPBEAR_VERSION = 0.53.1 DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.gz DROPBEAR_SITE = http://matt.ucc.asn.au/dropbear/releases -DROPBEAR_DEPENDENCIES = zlib DROPBEAR_TARGET_BINS = dbclient dropbearkey dropbearconvert scp ssh DROPBEAR_MAKE = $(MAKE) MULTI=1 SCPPROGRESS=1 \ PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp" @@ -41,8 +40,10 @@ endif ifeq ($(BR2_PACKAGE_DROPBEAR_SMALL),y) DROPBEAR_POST_EXTRACT_HOOKS += DROPBEAR_BUILD_SMALL +DROPBEAR_CONF_OPT += --disable-zlib else DROPBEAR_POST_EXTRACT_HOOKS += DROPBEAR_BUILD_FEATURED +DROPBEAR_DEPENDENCIES += zlib endif define DROPBEAR_INSTALL_TARGET_CMDS |