diff options
author | Ming Liu <liu.ming50@gmail.com> | 2017-09-17 11:53:43 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-21 09:24:00 +0100 |
commit | 44160df561a1b10b4c7a74558bdfe6b58ee0a9ec (patch) | |
tree | 8a672f8c5c37199d79497c004135f9060797511a | |
parent | 060088f256f8134ad68a7b5e493ddfa78a0382ea (diff) | |
download | openembedded-core-contrib-44160df561a1b10b4c7a74558bdfe6b58ee0a9ec.tar.gz |
cross-canadian.bbclass: drop TARGET_* flags overrides
A regression was introduced by me in commit 767335c9:
[ cross-canadian.bbclass: override TARGET_* flags ]
it causes BUILDSDK_C/CXXFLAGS being exported in environment-setup
script built from meta-environment recipe, which is wrong, restore to
TARGET_C/CXXFLAGS.
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/classes/cross-canadian.bbclass | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass index 69cbe901a68..1928455cf7a 100644 --- a/meta/classes/cross-canadian.bbclass +++ b/meta/classes/cross-canadian.bbclass @@ -113,11 +113,6 @@ HOST_CC_ARCH = "${SDK_CC_ARCH}" HOST_LD_ARCH = "${SDK_LD_ARCH}" HOST_AS_ARCH = "${SDK_AS_ARCH}" -TARGET_CPPFLAGS = "${BUILDSDK_CPPFLAGS}" -TARGET_CFLAGS = "${BUILDSDK_CFLAGS}" -TARGET_CXXFLAGS = "${BUILDSDK_CXXFLAGS}" -TARGET_LDFLAGS = "${BUILDSDK_LDFLAGS}" - #assign DPKG_ARCH DPKG_ARCH = "${@debian_arch_map(d.getVar('SDK_ARCH'), '')}" |