diff options
author | Ming Liu <ming.liu@windriver.com> | 2013-10-20 18:48:30 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-26 15:59:15 +0100 |
commit | b831b8c072583a4ab2d69fbd4c5b18f76eb2d44b (patch) | |
tree | 251819c18d5dca6c54546208de2e14fb01054d7a /meta | |
parent | c0ab353aa8551fed0f50d3f9774dd30c32c66bcd (diff) | |
download | poky-b831b8c072583a4ab2d69fbd4c5b18f76eb2d44b.tar.gz |
bzip2: replace += with _append for appending to OVERRIDES variables
In some cases, it's unfit to use "+=" in a conditional appending, we would
end up with the variable being set rather than being appended, which is not
it mean to.
(From OE-Core rev: 9e9b5cbc352e1f8dce46458926b38a5aefc18fc3)
Signed-off-by: Ming Liu <ming.liu@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2_1.0.6.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb b/meta/recipes-extended/bzip2/bzip2_1.0.6.bb index 4189f78fdf..c7c5d681d9 100644 --- a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb +++ b/meta/recipes-extended/bzip2/bzip2_1.0.6.bb | |||
@@ -26,7 +26,7 @@ ALTERNATIVE_PRIORITY = "100" | |||
26 | ALTERNATIVE_${PN} = "bunzip2 bzcat" | 26 | ALTERNATIVE_${PN} = "bunzip2 bzcat" |
27 | 27 | ||
28 | #install binaries to bzip2-native under sysroot for replacement-native | 28 | #install binaries to bzip2-native under sysroot for replacement-native |
29 | EXTRA_OECONF_class-native += "--bindir=${STAGING_BINDIR_NATIVE}/${PN}" | 29 | EXTRA_OECONF_append_class-native = " --bindir=${STAGING_BINDIR_NATIVE}/${PN}" |
30 | do_configure_prepend () { | 30 | do_configure_prepend () { |
31 | cp ${WORKDIR}/configure.ac ${S}/ | 31 | cp ${WORKDIR}/configure.ac ${S}/ |
32 | cp ${WORKDIR}/Makefile.am ${S}/ | 32 | cp ${WORKDIR}/Makefile.am ${S}/ |