diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-08-13 01:18:13 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-23 09:25:07 +0100 |
commit | 49ee0da024dcb80026b5dc23367e79e0ed80e6aa (patch) | |
tree | 8f24ca433284995993c0c21eac49eac4b8359fa8 /meta/recipes-extended/gzip | |
parent | 786530de31553b3e0a93874bdc425bfca50a5866 (diff) | |
download | openembedded-core-49ee0da024dcb80026b5dc23367e79e0ed80e6aa.tar.gz openembedded-core-49ee0da024dcb80026b5dc23367e79e0ed80e6aa.tar.bz2 openembedded-core-49ee0da024dcb80026b5dc23367e79e0ed80e6aa.zip |
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 <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/gzip')
-rw-r--r-- | meta/recipes-extended/gzip/gzip.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-extended/gzip/gzip.inc b/meta/recipes-extended/gzip/gzip.inc index eeeafe02c3..671b1eb16a 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" |