diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2012-09-29 19:19:13 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-02 11:40:50 +0100 |
commit | cf7cff7d2306f83847609d369477984dc8e31cdd (patch) | |
tree | e694f89e2a193aedefc61d56850e1ded766101e6 /meta/recipes-support | |
parent | eab49954002c26bab4bffd344c1fd82d8f524f6e (diff) | |
download | poky-cf7cff7d2306f83847609d369477984dc8e31cdd.tar.gz |
Cleanup: fix PN == BPN cases
When building target packages, it used to be enought to check for PN == BPN, however
with the multilib configurations, this can lead to subtle errors. Change instances
of PN == BPN, to ${CLASSOVERRIDE} == 'class-target'.
(From OE-Core rev: acc988272b4e74a9ad1e6da5af5b2d208584197b)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/apr/apr-util_1.4.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/apr/apr-util_1.4.1.bb b/meta/recipes-support/apr/apr-util_1.4.1.bb index 0516bc4acc..238af97a53 100644 --- a/meta/recipes-support/apr/apr-util_1.4.1.bb +++ b/meta/recipes-support/apr/apr-util_1.4.1.bb | |||
@@ -9,7 +9,7 @@ LICENSE = "Apache-2.0" | |||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=519e0a18e03f7c023070568c14b077bb \ | 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=519e0a18e03f7c023070568c14b077bb \ |
10 | file://include/apu_version.h;endline=17;md5=806685a84e71f10c80144c48eb35df42" | 10 | file://include/apu_version.h;endline=17;md5=806685a84e71f10c80144c48eb35df42" |
11 | 11 | ||
12 | PR = "r1" | 12 | PR = "r2" |
13 | 13 | ||
14 | SRC_URI = "${APACHE_MIRROR}/apr/${BPN}-${PV}.tar.gz \ | 14 | SRC_URI = "${APACHE_MIRROR}/apr/${BPN}-${PV}.tar.gz \ |
15 | file://configfix.patch \ | 15 | file://configfix.patch \ |
@@ -33,7 +33,7 @@ inherit autotools lib_package binconfig | |||
33 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" | 33 | OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'" |
34 | 34 | ||
35 | do_configure_append() { | 35 | do_configure_append() { |
36 | if [ "${PN}" == "${BPN}" ]; then | 36 | if [ "${CLASSOVERRIDE}" = "class-target" ]; then |
37 | cp ${STAGING_DATADIR}/apr/apr_rules.mk ${S}/build/rules.mk | 37 | cp ${STAGING_DATADIR}/apr/apr_rules.mk ${S}/build/rules.mk |
38 | fi | 38 | fi |
39 | } | 39 | } |