diff options
author | Ting Liu <ting.liu@freescale.com> | 2014-07-23 11:58:57 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-23 21:59:24 +0100 |
commit | b7f8fded0de08d2bfe16541bc4d8c9073b3bb941 (patch) | |
tree | b131f215b322df5c09a5ba6806cfda6764dcefd7 /meta/recipes-support | |
parent | 78a38c8ab296eeb773429ce709b33f764af2c26c (diff) | |
download | poky-b7f8fded0de08d2bfe16541bc4d8c9073b3bb941.tar.gz |
serf: specify LIBDIR to avoid install issue
LIBDIR defaults to ${prefix}/lib, use ${libdir} to avoid issue on
64bit platforms.
(From OE-Core rev: e5c023abd5265293623ac993a048d7abb9b71a59)
Signed-off-by: Ting Liu <ting.liu@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/serf/serf_1.3.6.bb | 4 |
1 files changed, 2 insertions, 2 deletions
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() { | |||
21 | } | 21 | } |
22 | 22 | ||
23 | do_install() { | 23 | do_install() { |
24 | ${STAGING_BINDIR_NATIVE}/scons PREFIX=${D}${prefix} install | 24 | ${STAGING_BINDIR_NATIVE}/scons PREFIX=${D}${prefix} LIBDIR=${D}${libdir} install |
25 | } | 25 | } |
26 | 26 | ||
27 | BBCLASSEXTEND = "native" \ No newline at end of file | 27 | BBCLASSEXTEND = "native" |