summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/vim/files/no-path-adjust.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/vim/files/no-path-adjust.patch')
-rw-r--r--meta/recipes-support/vim/files/no-path-adjust.patch29
1 files changed, 19 insertions, 10 deletions
diff --git a/meta/recipes-support/vim/files/no-path-adjust.patch b/meta/recipes-support/vim/files/no-path-adjust.patch
index 05c2d803f6..908459a95e 100644
--- a/meta/recipes-support/vim/files/no-path-adjust.patch
+++ b/meta/recipes-support/vim/files/no-path-adjust.patch
@@ -1,4 +1,7 @@
1vim: do not adjust script pathnames 1From 4125a1ccb82fd53d003acdc34e462f238f0c4f0d Mon Sep 17 00:00:00 2001
2From: Joe Slater <joe.slater@windriver.com>
3Date: Fri, 8 Jul 2022 11:03:22 +0800
4Subject: [PATCH] vim: do not adjust script pathnames
2 5
3When cross-compiling, we do not want to reference the host versions of 6When cross-compiling, we do not want to reference the host versions of
4things like perl and awk. 7things like perl and awk.
@@ -6,22 +9,28 @@ things like perl and awk.
6Upstream-Status: Pending 9Upstream-Status: Pending
7 10
8Signed-off-by: Joe Slater <joe.slater@windriver.com> 11Signed-off-by: Joe Slater <joe.slater@windriver.com>
12Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
13---
14 src/Makefile | 6 +-----
15 1 file changed, 1 insertion(+), 5 deletions(-)
9 16
17diff --git a/src/Makefile b/src/Makefile
18index c9513a632..7a7cbdc43 100644
10--- a/src/Makefile 19--- a/src/Makefile
11+++ b/src/Makefile 20+++ b/src/Makefile
12@@ -2507,11 +2507,14 @@ installtools: $(TOOLS) $(DESTDIR)$(exec_ 21@@ -2534,11 +2534,7 @@ installtools: $(TOOLS) $(DESTDIR)$(exec_prefix) $(DEST_BIN) \
13 rm -rf $$cvs; \ 22 rm -rf $$cvs; \
14 fi 23 fi
15 -chmod $(FILEMOD) $(DEST_TOOLS)/* 24 -chmod $(FILEMOD) $(DEST_TOOLS)/*
16-# replace the path in some tools 25-# replace the path in some tools
17+ 26- perlpath=`./which.sh perl` && sed -e "s+/usr/bin/perl+$$perlpath+" $(TOOLSSOURCE)/efm_perl.pl >$(DEST_TOOLS)/efm_perl.pl
18+# replace the path in some tools, but not when cross-compiling 27- awkpath=`./which.sh nawk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; if test -z "$$awkpath"; then \
19+ifneq ($(CROSS_COMPILING),1) 28- awkpath=`./which.sh gawk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; if test -z "$$awkpath"; then \
20 perlpath=`./which.sh perl` && sed -e "s+/usr/bin/perl+$$perlpath+" $(TOOLSSOURCE)/efm_perl.pl >$(DEST_TOOLS)/efm_perl.pl 29- awkpath=`./which.sh awk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; fi; fi
21 awkpath=`./which.sh nawk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; if test -z "$$awkpath"; then \ 30+# not replace the path in some tools
22 awkpath=`./which.sh gawk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; if test -z "$$awkpath"; then \
23 awkpath=`./which.sh awk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; fi; fi
24+endif
25 -chmod $(SCRIPTMOD) `grep -l "^#!" $(DEST_TOOLS)/*` 31 -chmod $(SCRIPTMOD) `grep -l "^#!" $(DEST_TOOLS)/*`
26 32
27 # install the language specific files for tools, if they were unpacked 33 # install the language specific files for tools, if they were unpacked
34--
352.25.1
36