summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRicardo Martincoski <ricardo.martincoski@gmail.com>2019-01-27 16:59:36 -0200
committerPeter Korsgaard <peter@korsgaard.com>2019-01-27 22:14:48 +0100
commit30ff614a035dd49e357f7c3560555dae8e605f80 (patch)
treef68d26b3029d4966894b709a220afcf456b672d7
parent68ec36d9fa95d1e8ca314c931a05d5fc0e5870d0 (diff)
downloadbuildroot-30ff614a035dd49e357f7c3560555dae8e605f80.tar.gz
buildroot-30ff614a035dd49e357f7c3560555dae8e605f80.zip
package/s6-networking: fix dependency when libressl is enabled
Commit "c5b85231fb s6-networking: enable SSL if libressl is selected" actually dropped the dependency on s6-dns and s6 when libressl is enabled. Fix this by using += inside the conditional code. Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Cc: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--package/s6-networking/s6-networking.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/s6-networking/s6-networking.mk b/package/s6-networking/s6-networking.mk
index 7c9f087051..b621eb225d 100644
--- a/package/s6-networking/s6-networking.mk
+++ b/package/s6-networking/s6-networking.mk
@@ -25,7 +25,7 @@ S6_NETWORKING_CONF_OPTS = \
ifeq ($(BR2_PACKAGE_LIBRESSL),y)
S6_NETWORKING_CONF_OPTS += --enable-ssl=libressl
-S6_NETWORKING_DEPENDENCIES = libressl
+S6_NETWORKING_DEPENDENCIES += libressl
endif
define S6_NETWORKING_CONFIGURE_CMDS
OpenPOWER on IntegriCloud