From: Ting Liu Date: Wed, 23 Jul 2014 03:58:57 +0000 (+0800) Subject: serf: specify LIBDIR to avoid install issue X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~33038 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5c023abd5265293623ac993a048d7abb9b71a59;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 9893cb7212d..08b04d3ca67 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"