From: Ting Liu Date: Wed, 23 Jul 2014 03:58:57 +0000 (+0800) Subject: serf: specify LIBDIR to avoid install issue X-Git-Tag: 2015-4~2201 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e5c023abd5265293623ac993a048d7abb9b71a59;p=openembedded-core.git serf: specify LIBDIR to avoid install issue LIBDIR defaults to ${prefix}/lib, use ${libdir} to avoid issue on 64bit platforms. Signed-off-by: Ting Liu Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/serf/serf_1.3.6.bb b/meta/recipes-support/serf/serf_1.3.6.bb index 9893cb7212..08b04d3ca6 100644 --- a/meta/recipes-support/serf/serf_1.3.6.bb +++ b/meta/recipes-support/serf/serf_1.3.6.bb @@ -21,7 +21,7 @@ do_compile() { } do_install() { - ${STAGING_BINDIR_NATIVE}/scons PREFIX=${D}${prefix} install + ${STAGING_BINDIR_NATIVE}/scons PREFIX=${D}${prefix} LIBDIR=${D}${libdir} install } -BBCLASSEXTEND = "native" \ No newline at end of file +BBCLASSEXTEND = "native"