From f56de721c4d98e5c064be584e0efbb14f84b0b71 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 29 Aug 2015 20:41:37 +0200 Subject: [PATCH] ibrdtn: fix bogus dependency on zlib Due to a copy/paste mistake, zlib was being added to _DEPENDENCIES even when not enabled in the configuration. This commit fixes that. Signed-off-by: Thomas Petazzoni --- package/ibrdtn/ibrdtn.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/package/ibrdtn/ibrdtn.mk b/package/ibrdtn/ibrdtn.mk index aab27a8acc..f899843396 100644 --- a/package/ibrdtn/ibrdtn.mk +++ b/package/ibrdtn/ibrdtn.mk @@ -17,7 +17,6 @@ IBRDTN_CONF_OPTS += --with-compression IBRDTN_DEPENDENCIES += zlib else IBRDTN_CONF_OPTS += --without-compression -IBRDTN_DEPENDENCIES += zlib endif ifeq ($(BR2_PACKAGE_LIBGLIB2),y)