From: Joe MacDonald Date: Thu, 28 Jun 2012 18:29:47 +0000 (+0100) Subject: apr: Install apr-local libtool in build dir X-Git-Tag: 2015-4~10185 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=eefbc2f219571dd0c66e1099ea4ad72b1a973fd4;p=openembedded-core.git apr: Install apr-local libtool in build dir Building apache with this version of apr would blow up on the results from: apr_config --apr-libtool Errors of the form: /bin/sh: /media/large/tmp/sysroots/x86_64-linux/usr/share/build-1/libtool: No such file or directory Fix that by ensuring libtool from apr's build lands in .../usr/share/build-1/. Signed-off-by: Joe MacDonald Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/apr/apr_1.4.6.bb b/meta/recipes-support/apr/apr_1.4.6.bb index c0ab4f114f..6cd37f12bb 100644 --- a/meta/recipes-support/apr/apr_1.4.6.bb +++ b/meta/recipes-support/apr/apr_1.4.6.bb @@ -39,6 +39,8 @@ do_configure_append() { do_install_append() { oe_multilib_header apr.h + install -d ${D}${datadir}/apr + cp ${S}/${HOST_SYS}-libtool ${D}${datadir}/build-1/libtool } SSTATE_SCAN_FILES += "apr_rules.mk"