From 1cbf2ad83fa3a65693707b98922fc10187f0a16b Mon Sep 17 00:00:00 2001 From: Chen Qi Date: Tue, 28 Apr 2015 10:49:34 +0800 Subject: pigz: set ALTERNATIVE for nativesdk package to empty Set ALTERNATIVE for nativesdk package to empty to avoid warnings like below. WARNING: pigz: NOT adding alternative provide xxx/bin/gunzip: xxx/bin/pigz does not exist Signed-off-by: Chen Qi --- meta/recipes-extended/pigz/pigz.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-extended/pigz/pigz.inc b/meta/recipes-extended/pigz/pigz.inc index c271f70159..6a6a553714 100644 --- a/meta/recipes-extended/pigz/pigz.inc +++ b/meta/recipes-extended/pigz/pigz.inc @@ -15,6 +15,7 @@ DEPENDS = "zlib" inherit update-alternatives +# do_install for target do_install_class-target() { # Install files into /bin (FHS), which is typical place for gzip install -d ${D}${base_bindir} @@ -23,6 +24,7 @@ do_install_class-target() { ln -nsf pigz ${D}${base_bindir}/pigzcat } +# do_install for native and nativesdk package do_install() { install -d ${D}${bindir} install ${B}/pigz ${D}${bindir}/gzip @@ -32,6 +34,7 @@ do_install() { ALTERNATIVE_PRIORITY = "80" ALTERNATIVE_${PN} = "gunzip gzip zcat" +ALTERNATIVE_${PN}_class-nativesdk = "" ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip" ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip" ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat" -- cgit 1.2.3-korg