diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-17 14:34:34 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-22 00:01:50 +0200 |
commit | 8576cc15c73b91011de5f48365d6a06c3c86635b (patch) | |
tree | de3bcf3249b6174198b7db79f752e099289fbd51 /meta-oe/recipes-extended/mozjs | |
parent | e2bf5590eacd636cdba71fb7c03cab8addd767c2 (diff) | |
download | meta-openembedded-8576cc15c73b91011de5f48365d6a06c3c86635b.tar.gz |
mozjs: Add missing zlib dependency
Avoids a QA warning. In reality zlib is likely nearly always built before mozjs.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/mozjs')
-rw-r--r-- | meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb b/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb index eadec1193..ab01471d0 100644 --- a/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb +++ b/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb | |||
@@ -13,7 +13,7 @@ S = "${WORKDIR}/${PN}${PV}/js/src" | |||
13 | 13 | ||
14 | inherit autotools pkgconfig perlnative | 14 | inherit autotools pkgconfig perlnative |
15 | 15 | ||
16 | DEPENDS += "nspr" | 16 | DEPENDS += "nspr zlib" |
17 | 17 | ||
18 | # nspr's package-config is ignored so set libs manually | 18 | # nspr's package-config is ignored so set libs manually |
19 | EXTRA_OECONF = " \ | 19 | EXTRA_OECONF = " \ |