diff options
author | Joe MacDonald <joe.macdonald@windriver.com> | 2012-06-28 19:29:47 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-29 13:31:00 +0100 |
commit | 11809e3fd1ae074c9ca002543c9c228f2db17784 (patch) | |
tree | b06dab573572f6dec07083547dd4a68f603db703 | |
parent | c4c029ad515eff002ef59a72bbb920381fc6f534 (diff) | |
download | poky-11809e3fd1ae074c9ca002543c9c228f2db17784.tar.gz |
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/.
(From OE-Core rev: eefbc2f219571dd0c66e1099ea4ad72b1a973fd4)
Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/apr/apr_1.4.6.bb | 2 |
1 files changed, 2 insertions, 0 deletions
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() { | |||
39 | 39 | ||
40 | do_install_append() { | 40 | do_install_append() { |
41 | oe_multilib_header apr.h | 41 | oe_multilib_header apr.h |
42 | install -d ${D}${datadir}/apr | ||
43 | cp ${S}/${HOST_SYS}-libtool ${D}${datadir}/build-1/libtool | ||
42 | } | 44 | } |
43 | 45 | ||
44 | SSTATE_SCAN_FILES += "apr_rules.mk" | 46 | SSTATE_SCAN_FILES += "apr_rules.mk" |