diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2014-11-21 04:50:57 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-05 18:01:07 +0000 |
commit | 997fb3474767a9f7c1c96267d66245373d3d1883 (patch) | |
tree | 6db004ba95cc147672e5841c6f0c42d822b3b828 /meta/recipes-extended/gzip/gzip.inc | |
parent | 984e17d88b4b374863fb7923ff9135855ee8a9de (diff) | |
download | poky-997fb3474767a9f7c1c96267d66245373d3d1883.tar.gz |
gzip: fix MakeMaker issues with using wrong SHELL/GREP
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: /usr/bin/grep: No such file or directory"
Fixed by removing unneeded substitution and using real runtime paths
instead.
(From OE-Core rev: fafdf20179cf28b24459dc0263e4ba36e5843b85)
Signed-off-by: Ming Liu <ming.liu@windriver.com>
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/gzip/gzip.inc')
-rw-r--r-- | meta/recipes-extended/gzip/gzip.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-extended/gzip/gzip.inc b/meta/recipes-extended/gzip/gzip.inc index 671b1eb16a..b90856e796 100644 --- a/meta/recipes-extended/gzip/gzip.inc +++ b/meta/recipes-extended/gzip/gzip.inc | |||
@@ -9,6 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | |||
9 | file://gzip.h;beginline=8;endline=20;md5=6e47caaa630e0c8bf9f1bc8d94a8ed0e" | 9 | file://gzip.h;beginline=8;endline=20;md5=6e47caaa630e0c8bf9f1bc8d94a8ed0e" |
10 | 10 | ||
11 | SRC_URI = "${GNU_MIRROR}/gzip/${BP}.tar.gz" | 11 | SRC_URI = "${GNU_MIRROR}/gzip/${BP}.tar.gz" |
12 | SRC_URI_append_class-target = " file://wrong-path-fix.patch" | ||
12 | 13 | ||
13 | inherit autotools texinfo | 14 | inherit autotools texinfo |
14 | 15 | ||