[OE-core] [PATCH] gzip: fix MakeMaker issues with using wrong SHELL/GREP

2014-11-21 Thread jackie.huang
From: Jackie Huang A set of substitution is being processed to all target scripts with sed by replacing some key words with the detected values at configure time, this is exactly not compliant with cross compling, and will cause missing path errors at run time like: "/usr/bin/zgrep: line 230: /us

Re: [OE-core] [PATCH] gzip: fix MakeMaker issues with using wrong SHELL/GREP

2013-11-29 Thread Ming Liu
On 11/28/2013 06:26 PM, Ming Liu wrote: Paths of shell/grep is being determined by detecting from host at configure stage, and then will be hard coded into scripts like zgrep, this would cause a following runtime error: "/usr/bin/zgrep: line 230: /usr/bin/grep: No such file or directory" Fixed b

[OE-core] [PATCH] gzip: fix MakeMaker issues with using wrong SHELL/GREP

2013-11-28 Thread Ming Liu
Paths of shell/grep is being determined by detecting from host at configure stage, and then will be hard coded into scripts like zgrep, this would cause a following runtime error: "/usr/bin/zgrep: line 230: /usr/bin/grep: No such file or directory" Fixed by using runtime paths instead. Signed-off