diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2013-06-19 10:45:45 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-19 18:03:35 +0100 |
commit | 56ff693128274f883e8365f7f689217dbe33f77d (patch) | |
tree | 29b938ac3e58d76dab5d36573b828f6ba53bd77b /meta/recipes-extended/wget | |
parent | be58154bafed7dc9b37be3221a0a6390a2c77b37 (diff) | |
download | poky-56ff693128274f883e8365f7f689217dbe33f77d.tar.gz |
wget: Add missing DEPENDS on zlib
Create a new build enviroment, build wget failed
...
configure:34512: checking for libssl
configure:34542: i586-poky-linux-gcc -m32 -march=i586 --sysroot=/home/jiahongxu/yocto/build-20130613-qemu/tmp/sysroots/qemux86 -o conftest - O2 -pipe -g -feliminate-unused-debug-types -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed conftest.c -ldl -lssl /home/jiahongxu/yocto/build- 20130613-qemu/tmp/sysroots/qemux86/lib/libcrypto.so -lz >&5
/home/jiahongxu/yocto/build-20130613-qemu/tmp/sysroots/x86_64-linux/usr/libexec/i586-poky-linux/gcc/i586-poky-linux/4.7.2/ld: cannot find -lz collect2: error: ld returned 1 exit status
...
>From log as we known, the reason is link zlib failed, it isn't
explicitly in wget's DEPENDS. Add zlib to wget's DEPENDS.
[YOCTO #4749]
(From OE-Core rev: e54393f18e2ffa5d8dbeca2357b0b3b7e4e31829)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/wget')
-rw-r--r-- | meta/recipes-extended/wget/wget.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index ba37a8740e..de9b62012f 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "A console URL download utility featuring HTTP, FTP, and more." | |||
2 | SECTION = "console/network" | 2 | SECTION = "console/network" |
3 | LICENSE = "GPLv3" | 3 | LICENSE = "GPLv3" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" |
5 | DEPENDS = "openssl" | 5 | DEPENDS = "openssl zlib" |
6 | 6 | ||
7 | INC_PR = "r16" | 7 | INC_PR = "r16" |
8 | 8 | ||