diff options
author | Trevor Gamblin <trevor.gamblin@windriver.com> | 2019-08-22 14:54:49 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-28 11:31:21 +0100 |
commit | 1ff7748a615f6e71aa8cad5e6871e768166e2325 (patch) | |
tree | 7ae26d66c97610054c4f0910dae5574ac5cb0b61 /meta | |
parent | ab840563bc4aa53d672c113c43d1cdeb2e1f88c1 (diff) | |
download | poky-1ff7748a615f6e71aa8cad5e6871e768166e2325.tar.gz |
lighttpd: drop hard-coded lua version in PACKAGECONFIG
When building lighttpd with PACKAGECONFIG_append_pn-lighttpd = "lua" in local.conf,
bitbake gives the following error:
ERROR: Nothing PROVIDES 'lua5.1' (but /home/tgamblin/build/oe-core/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb DEPENDS on or otherwise requires it)
NOTE: Runtime target 'lighttpd' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['lighttpd', 'lua5.1']
Removing the "5.1" from the PACKAGECONFIG line in lighttpd_1.4.54.bb fixes the issue.
(From OE-Core rev: 5ee9be17407ae0c23dc056c98b4a6818d2a845d6)
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb index ba1a2c54bf..72990d02e5 100644 --- a/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb +++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb | |||
@@ -44,7 +44,7 @@ PACKAGECONFIG[webdav-props] = "--with-webdav-props,--without-webdav-props,libxml | |||
44 | PACKAGECONFIG[webdav-locks] = "--with-webdav-locks,--without-webdav-locks,util-linux" | 44 | PACKAGECONFIG[webdav-locks] = "--with-webdav-locks,--without-webdav-locks,util-linux" |
45 | PACKAGECONFIG[gdbm] = "--with-gdbm,--without-gdbm,gdbm" | 45 | PACKAGECONFIG[gdbm] = "--with-gdbm,--without-gdbm,gdbm" |
46 | PACKAGECONFIG[memcache] = "--with-memcached,--without-memcached,libmemcached" | 46 | PACKAGECONFIG[memcache] = "--with-memcached,--without-memcached,libmemcached" |
47 | PACKAGECONFIG[lua] = "--with-lua,--without-lua,lua5.1" | 47 | PACKAGECONFIG[lua] = "--with-lua,--without-lua,lua" |
48 | 48 | ||
49 | EXTRA_OECONF += "--enable-lfs" | 49 | EXTRA_OECONF += "--enable-lfs" |
50 | 50 | ||