]> code.ossystems Code Review - openembedded-core.git/commitdiff
sed-native: drop
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Thu, 29 Jan 2015 13:24:09 +0000 (13:24 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 2 Feb 2015 12:41:08 +0000 (12:41 +0000)
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>
meta/classes/populate_sdk_base.bbclass
meta/recipes-extended/sed/sed_4.1.2.bb
meta/recipes-extended/sed/sed_4.2.2.bb

index de72e32ed8801d33fd819d1a9be66d611cbcfa05..8b7e9ea8dd255012cab5b475a20617256fa19496 100644 (file)
@@ -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
index fe242e16bd878234f33ff8d7715a1ed8f01e9b2e..4c0f3452ac08459bba15e24da9899c7bbf5b9710 100644 (file)
@@ -31,4 +31,3 @@ ALTERNATIVE_${PN} = "sed"
 ALTERNATIVE_LINK_NAME[sed] = "${base_bindir}/sed"
 ALTERNATIVE_PRIORITY = "100"
 
-BBCLASSEXTEND = "native"
index ea39dae435e6e3a43e73d1d701be7ef36bd16aa0..72976deb645be571971c1609ab50ddf47b9ef1d9 100644 (file)
@@ -40,4 +40,3 @@ do_install_ptest() {
        oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B} DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR}
 }
 
-BBCLASSEXTEND = "native"