From: Robert Yang Date: Wed, 13 Aug 2014 08:18:13 +0000 (-0700) Subject: gzip: set CONFIG_SHELL to /bin/sh X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~32677 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49ee0da024dcb80026b5dc23367e79e0ed80e6aa;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git gzip: set CONFIG_SHELL to /bin/sh It would be bash, sh, ksh or sh5 according to the host if we don't set this, and its scripts don't have bashism as the checkbashisms shows. Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/gzip/gzip.inc b/meta/recipes-extended/gzip/gzip.inc index eeeafe02c31..671b1eb16a6 100644 --- a/meta/recipes-extended/gzip/gzip.inc +++ b/meta/recipes-extended/gzip/gzip.inc @@ -30,3 +30,5 @@ ALTERNATIVE_${PN} = "gunzip gzip zcat" ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip" ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip" ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat" + +export CONFIG_SHELL="/bin/sh"