diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-01-29 13:24:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-02 12:41:08 +0000 |
commit | 863a3966e1a200e7a15fbdbb8e04dce6e3f6c1a2 (patch) | |
tree | 1ee326485972dd51fa93472f674648ec5233c850 /meta/classes | |
parent | 224c24d8a8ea6230ed56ea61cdb86e78c5ec4311 (diff) | |
download | openembedded-core-863a3966e1a200e7a15fbdbb8e04dce6e3f6c1a2.tar.gz openembedded-core-863a3966e1a200e7a15fbdbb8e04dce6e3f6c1a2.tar.bz2 openembedded-core-863a3966e1a200e7a15fbdbb8e04dce6e3f6c1a2.zip |
sed-native: drop
This was added back in the depths of history (around 2006 in OE-Classic)
when apparently the host sed couldn't always be relied upon. We now call
the host sed all over the place without this dependency and don't have
any problems. On the other hand, having it around can lead to races
where we're calling sed in one task and staging it to the sysroot in
another, the result being nasty failures compiling binutils for example.
Since it isn't needed, let's just drop it completely.
Fixes [YOCTO #7264].
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index de72e32ed8..8b7e9ea8dd 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass @@ -40,7 +40,7 @@ TOOLCHAIN_TARGET_TASK_ATTEMPTONLY ?= "" TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-toolchain-${SDK_VERSION}" SDK_RDEPENDS = "${TOOLCHAIN_TARGET_TASK} ${TOOLCHAIN_HOST_TASK}" -SDK_DEPENDS = "virtual/fakeroot-native sed-native" +SDK_DEPENDS = "virtual/fakeroot-native" # We want the MULTIARCH_TARGET_SYS to point to the TUNE_PKGARCH, not PACKAGE_ARCH as it # could be set to the MACHINE_ARCH |