wget 1.9.1: The fix to stop wget searching the system paths didn't work for
authorJamie Lenehan <lenehan@twibble.org>
Tue, 6 Jun 2006 01:40:15 +0000 (01:40 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Tue, 6 Jun 2006 01:40:15 +0000 (01:40 +0000)
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

index 8521655..f5bf643 100644 (file)
@@ -2,7 +2,7 @@ DESCRIPTION = "A console URL download utility featuring HTTP, FTP, and more."
 SECTION = "console/network"
 MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
 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