mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 02:50:46 +00:00
zlog: fix up library path for multilib
When using multilib the path for libraries might be something other than /usr/lib. zlog defaults LIBRARY_PATH to 'lib' so we need to set this appropriately so that cases where this isn't 'lib' it works properly. Signed-off-by: Dan Dedrick <ddedrick@lexmark.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -14,7 +14,7 @@ S = "${WORKDIR}/git"
|
||||
|
||||
inherit pkgconfig
|
||||
|
||||
EXTRA_OEMAKE = "CC='${CC}' LD='${LD}'"
|
||||
EXTRA_OEMAKE = "CC='${CC}' LD='${LD}' LIBRARY_PATH=${baselib}"
|
||||
|
||||
do_install() {
|
||||
oe_runmake install PREFIX=${D}${exec_prefix} INSTALL=install
|
||||
|
||||
Reference in New Issue
Block a user