summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/gzip/gzip-1.10/wrong-path-fix.patch
diff options
context:
space:
mode:
authorwangmy <wangmy@fujitsu.com>2021-09-08 22:41:58 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-11 18:41:38 +0100
commitda55405f5263bde9560022991d17b11d5e623c67 (patch)
treea0e42a35d837cd8ca46bdf94eb8cbf8a4598095e /meta/recipes-extended/gzip/gzip-1.10/wrong-path-fix.patch
parent0a71a22073a0f56404ff0f4bf38de0f4da1b29d9 (diff)
downloadpoky-da55405f5263bde9560022991d17b11d5e623c67.tar.gz
gzip: upgrade 1.10 -> 1.11
(From OE-Core rev: 67ee7aeaafcfdeeadcc3a7a33dd038de241b339f) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/gzip/gzip-1.10/wrong-path-fix.patch')
-rw-r--r--meta/recipes-extended/gzip/gzip-1.10/wrong-path-fix.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-extended/gzip/gzip-1.10/wrong-path-fix.patch b/meta/recipes-extended/gzip/gzip-1.10/wrong-path-fix.patch
deleted file mode 100644
index 7c37bc8d2d..0000000000
--- a/meta/recipes-extended/gzip/gzip-1.10/wrong-path-fix.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1fix MakeMaker issues with using wrong SHELL/GREP
2
3A set of substitution is being processed to all target scripts with sed by
4replacing some key words with the detected values at configure time, this
5is exactly not compliant with cross compling, and will cause missing path
6errors at run time like:
7"/usr/bin/zgrep: line 230: /usr/bin/grep: No such file or directory"
8
9Fixed by removing unneeded substitution and using real runtime paths
10instead.
11
12Signed-off-by: Ming Liu <ming.liu@windriver.com>
13
14Upstream-Status: Pending
15
16---
17 Makefile.am | 3 +--
18 1 file changed, 1 insertion(+), 2 deletions(-)
19
20diff --git a/Makefile.am b/Makefile.am
21index d4ecc3f..e4657d2 100644
22--- a/Makefile.am
23+++ b/Makefile.am
24@@ -82,8 +82,7 @@ SUFFIXES = .in
25 .in:
26 $(AM_V_GEN)rm -f $@-t $@ \
27 && sed \
28- -e 's|/bin/sh|$(SHELL)|g' \
29- -e 's|[@]GREP@|$(GREP)|g' \
30+ -e 's|[@]GREP@|$(base_bindir)/grep|g' \
31 -e 's|[@]VERSION@|$(VERSION)|g' \
32 $(srcdir)/$@.in >$@-t \
33 && chmod a=rx $@-t \
34--
352.7.4
36