diff options
author | Andrew Gabbasov <andrew_gabbasov@mentor.com> | 2011-09-28 16:07:58 +0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-28 21:38:30 +0100 |
commit | 5f1fac618fa099f6fc78cbc98f18d1c0ab792abf (patch) | |
tree | be454fe7d9261a85c75ccf8314773fdd7b590833 /meta/recipes-bsp/apmd | |
parent | 61cedb87446a27ddaaa880a5f3296399def441df (diff) | |
download | openembedded-core-contrib-5f1fac618fa099f6fc78cbc98f18d1c0ab792abf.tar.gz |
apmd: use ${HOST_SYS}-libtool
libtool-cross uses ${HOST_SYS}- prefix while building and installing.
In some cases that may be different from ${TARGET_PREFIX}, that is currently
used in apmd recipe. It's better to have them consistent.
Signed-off-by: Andrew Gabbasov <andrew_gabbasov@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/apmd')
-rw-r--r-- | meta/recipes-bsp/apmd/apmd_3.2.2-14.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/apmd/apmd_3.2.2-14.bb b/meta/recipes-bsp/apmd/apmd_3.2.2-14.bb index e80e108ca51..bf53cc650a5 100644 --- a/meta/recipes-bsp/apmd/apmd_3.2.2-14.bb +++ b/meta/recipes-bsp/apmd/apmd_3.2.2-14.bb @@ -34,7 +34,7 @@ INITSCRIPT_PARAMS = "defaults" do_compile() { # apmd doesn't use whole autotools. Just libtool for installation - oe_runmake "LIBTOOL=${STAGING_BINDIR_CROSS}/${TARGET_PREFIX}libtool" apm apmd + oe_runmake "LIBTOOL=${STAGING_BINDIR_CROSS}/${HOST_SYS}-libtool" apm apmd } do_install() { |