diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2015-06-30 15:28:49 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-08 00:01:21 +0100 |
commit | 090e95739950ce2fe35d944343ccfc1d02913d1c (patch) | |
tree | 46e50da4f21b104cabdccf848119e79aa1905d56 /meta/recipes-extended/lsb/lsbtest_1.0.bb | |
parent | a1bb76492191427d568ed6d206e71c148879cc33 (diff) | |
download | poky-090e95739950ce2fe35d944343ccfc1d02913d1c.tar.gz |
lsb: update i586 TARGET_ARCH tests to also handle i686
(From OE-Core rev: aad17a479f1047197ab6e2010226da054fb53ddb)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/lsb/lsbtest_1.0.bb')
-rw-r--r-- | meta/recipes-extended/lsb/lsbtest_1.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/lsb/lsbtest_1.0.bb b/meta/recipes-extended/lsb/lsbtest_1.0.bb index f61251e2aa..ea12502dc8 100644 --- a/meta/recipes-extended/lsb/lsbtest_1.0.bb +++ b/meta/recipes-extended/lsb/lsbtest_1.0.bb | |||
@@ -19,7 +19,7 @@ do_install() { | |||
19 | install -d ${D}/opt/lsb-test | 19 | install -d ${D}/opt/lsb-test |
20 | install -m 0644 ${S}/packages_list ${D}/opt/lsb-test/packages_list | 20 | install -m 0644 ${S}/packages_list ${D}/opt/lsb-test/packages_list |
21 | install -m 0644 ${S}/session ${D}/opt/lsb-test/session | 21 | install -m 0644 ${S}/session ${D}/opt/lsb-test/session |
22 | if [ "${TARGET_ARCH}" = "i586" ];then | 22 | if [ "${TARGET_ARCH}" = "i586" ] || [ "${TARGET_ARCH}" = "i686" ];then |
23 | sed -i -e 's/lsbarch/ia32/g' -e 's/targetarch/i486/g' ${D}/opt/lsb-test/packages_list | 23 | sed -i -e 's/lsbarch/ia32/g' -e 's/targetarch/i486/g' ${D}/opt/lsb-test/packages_list |
24 | sed -i -e 's/targetarch/x86/g' ${D}/opt/lsb-test/session | 24 | sed -i -e 's/targetarch/x86/g' ${D}/opt/lsb-test/session |
25 | fi | 25 | fi |