[oe-commits] [openembedded-core] 17/24: coreutils: fix for native and nativesdk

git at git.openembedded.org git at git.openembedded.org
Tue May 17 14:25:20 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 1b5b831d1bbb92760ce01b38347cf0bcaa1bb59f
Author: Dengke Du <dengke.du at windriver.com>
AuthorDate: Mon Apr 25 22:59:19 2016 -0700

    coreutils: fix for native and nativesdk
    
    The do_install_append is used for moving/renaming for ALTERNATIVE, but
    it breaks native, for example there is no ln, but ln.coreutils, that
    makes coreutils-native don't work. This patch fixes the problem.
    
    Signed-off-by: Dengke Du <dengke.du at windriver.com>
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/coreutils/coreutils_8.25.bb | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-core/coreutils/coreutils_8.25.bb b/meta/recipes-core/coreutils/coreutils_8.25.bb
index 419a693..b1aaf53 100644
--- a/meta/recipes-core/coreutils/coreutils_8.25.bb
+++ b/meta/recipes-core/coreutils/coreutils_8.25.bb
@@ -69,6 +69,15 @@ do_compile_prepend () {
 	mkdir -p ${B}/src
 }
 
+do_install_class-native() {
+	autotools_do_install
+	# remove groups to fix conflict with shadow-native
+	rm -f ${D}${STAGING_BINDIR_NATIVE}/groups
+	# The return is a must since native doesn't need the
+	# do_install_append() in the below.
+	return
+}
+
 do_install_append() {
 	for i in df mktemp base64; do mv ${D}${bindir}/$i ${D}${bindir}/$i.${BPN}; done
 
@@ -91,11 +100,6 @@ do_install_append() {
 	cp -a ${D}${mandir}/man1/test.1 ${D}${mandir}/man1/lbracket.1.${BPN}
 }
 
-do_install_append_class-native(){
-	# remove groups to fix conflict with shadow-native
-	rm -f ${D}${STAGING_BINDIR_NATIVE}/groups
-}
-
 inherit update-alternatives
 
 ALTERNATIVE_PRIORITY = "100"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list