diff options
| author | Ismael Luceno <ismael@iodev.co.uk> | 2017-12-05 02:42:36 -0300 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-06 22:04:18 +0100 |
| commit | 13b06a4e5287aa280b6bb3deb7f70b86add30216 (patch) | |
| tree | d0ce1dbf8015385689c80ab89e11dd55e4b33648 | |
| parent | 2c3d7cce2df92eeed1cf95073a1364423b01689e (diff) | |
| download | buildroot-13b06a4e5287aa280b6bb3deb7f70b86add30216.tar.gz buildroot-13b06a4e5287aa280b6bb3deb7f70b86add30216.zip | |
axel: Fix OpenSSL dependency
openssl is a virtual package, that can be provided by either libressl
or libopenssl, so there's no need to check for libressl separately.
Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/axel/axel.mk | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/package/axel/axel.mk b/package/axel/axel.mk index dcc8afd0b4..136c2e26eb 100644 --- a/package/axel/axel.mk +++ b/package/axel/axel.mk @@ -17,10 +17,7 @@ AXEL_CONF_OPTS = \ ac_cv_prog_cc_c99=-std=c99 \ CFLAGS="$(TARGET_CFLAGS)" -ifeq ($(BR2_PACKAGE_LIBRESSL),y) -AXEL_CONF_OPTS += --with-ssl -AXEL_DEPENDENCIES += libressl -else ifeq ($(BR2_PACKAGE_OPENSSL),y) +ifeq ($(BR2_PACKAGE_OPENSSL),y) AXEL_CONF_OPTS += --with-ssl AXEL_DEPENDENCIES += openssl else |

