From b5d213c76a69dc12a41d688b78c4dd5344880a28 Mon Sep 17 00:00:00 2001 From: Jamie Lenehan Date: Tue, 6 Jun 2006 01:40:15 +0000 Subject: wget 1.9.1: The fix to stop wget searching the system paths didn't work for unslung/slugsos since an append to EXTRA_OECONF appears to happen before a condidition setting even though the append happens later. We need to pass the same option to disable ssl for unslung/slugsos directly instead of relying on the append. --- packages/wget/wget_1.9.1.bb | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/packages/wget/wget_1.9.1.bb b/packages/wget/wget_1.9.1.bb index 8521655477..f5bf6439dc 100644 --- a/packages/wget/wget_1.9.1.bb +++ b/packages/wget/wget_1.9.1.bb @@ -2,7 +2,7 @@ DESCRIPTION = "A console URL download utility featuring HTTP, FTP, and more." SECTION = "console/network" MAINTAINER = "Chris Larson " DEPENDS = "" -PR = "r5" +PR = "r6" LICENSE = "GPL" SRC_URI = "${GNU_MIRROR}/wget/wget-${PV}.tar.gz \ @@ -12,15 +12,13 @@ S = "${WORKDIR}/wget-${PV}" inherit autotools gettext -EXTRA_OECONF = "--enable-ipv6" +# Disable checking for SSL since that searches the system paths +EXTRA_OECONF = "--enable-ipv6 --without-ssl" # The unslung kernel does not support ipv6 -EXTRA_OECONF_unslung = "" +EXTRA_OECONF_unslung = "--without-ssl" # SlugOS kernels do not support ipv6. Can be loaded as a module. -EXTRA_OECONF_slugos = "" - -# Disable checking for SSL since that searches the system paths -EXTRA_OECONF += "--without-ssl" +EXTRA_OECONF_slugos = "--without-ssl" do_configure () { if [ ! -e acinclude.m4 ]; then -- cgit v1.2.3