diff options
author | Jeremy Puhlman <jpuhlman@mvista.com> | 2020-02-28 14:53:33 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-29 13:04:48 +0000 |
commit | 0101968aa8b2f5d995510755cc085585a04ba459 (patch) | |
tree | deb6766d05e9193051deaaca43d4b24492860a4c | |
parent | c897b60bcac5dc6862db869542497c6848423061 (diff) | |
download | poky-0101968aa8b2f5d995510755cc085585a04ba459.tar.gz |
apr: add mulitlib scripts apr-1-config, apr_rules.mk
apr_rules.mk encodes build options in to file
35c35
< CC=x86_64-montavista-linux-gcc -m64 -march=nehalem -mtune=generic -mfpmath=sse -msse4.2 --sysroot=
(From OE-Core rev: 9cdfafe487fc5e7fecdc56a8fa5c3ea70829fb99)
Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/apr/apr_1.7.0.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-support/apr/apr_1.7.0.bb b/meta/recipes-support/apr/apr_1.7.0.bb index eca9cdea48..8a9b780593 100644 --- a/meta/recipes-support/apr/apr_1.7.0.bb +++ b/meta/recipes-support/apr/apr_1.7.0.bb | |||
@@ -23,7 +23,7 @@ SRC_URI = "${APACHE_MIRROR}/apr/${BPN}-${PV}.tar.bz2 \ | |||
23 | SRC_URI[md5sum] = "7a14a83d664e87599ea25ff4432e48a7" | 23 | SRC_URI[md5sum] = "7a14a83d664e87599ea25ff4432e48a7" |
24 | SRC_URI[sha256sum] = "e2e148f0b2e99b8e5c6caa09f6d4fb4dd3e83f744aa72a952f94f5a14436f7ea" | 24 | SRC_URI[sha256sum] = "e2e148f0b2e99b8e5c6caa09f6d4fb4dd3e83f744aa72a952f94f5a14436f7ea" |
25 | 25 | ||
26 | inherit autotools-brokensep lib_package binconfig multilib_header ptest | 26 | inherit autotools-brokensep lib_package binconfig multilib_header ptest multilib_script |
27 | 27 | ||
28 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" | 28 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" |
29 | 29 | ||
@@ -51,6 +51,9 @@ do_configure_prepend() { | |||
51 | ./buildconf 2 | 51 | ./buildconf 2 |
52 | } | 52 | } |
53 | 53 | ||
54 | MULTILIB_SCRIPTS = "${PN}-dev:${bindir}/apr-1-config \ | ||
55 | ${PN}-dev:${datadir}/build-1/apr_rules.mk" | ||
56 | |||
54 | FILES_${PN}-dev += "${libdir}/apr.exp ${datadir}/build-1/*" | 57 | FILES_${PN}-dev += "${libdir}/apr.exp ${datadir}/build-1/*" |
55 | RDEPENDS_${PN}-dev += "bash" | 58 | RDEPENDS_${PN}-dev += "bash" |
56 | 59 | ||