diff options
| author | Joe Slater <joe.slater@windriver.com> | 2020-04-15 14:28:38 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-04-24 14:10:08 +0100 |
| commit | 13cad0f5c41b8abf11d2cfc383e3b9b5ca2721f4 (patch) | |
| tree | 9f8e0de4bdbe6706df96391957b4d33a4a03ca2b /meta/recipes-support/vim/files | |
| parent | 5c90ec2d800947b20b8551521a669ab90c7fd9c8 (diff) | |
| download | poky-13cad0f5c41b8abf11d2cfc383e3b9b5ca2721f4.tar.gz | |
vim: do not adjust script paths building for target
When cross-compiling, do not change scripts to use host
versions of perl and gawk.
Also, use INSANE_SKIP to suppress QA complaints if perl
or gawk are not on the target.
(From OE-Core rev: 8972fe5581b9fe8ef14d539001758bb13bca6737)
Signed-off-by: Joe Slater <joe.slater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/vim/files')
| -rw-r--r-- | meta/recipes-support/vim/files/no-path-adjust.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-support/vim/files/no-path-adjust.patch b/meta/recipes-support/vim/files/no-path-adjust.patch new file mode 100644 index 0000000000..05c2d803f6 --- /dev/null +++ b/meta/recipes-support/vim/files/no-path-adjust.patch | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | vim: do not adjust script pathnames | ||
| 2 | |||
| 3 | When cross-compiling, we do not want to reference the host versions of | ||
| 4 | things like perl and awk. | ||
| 5 | |||
| 6 | Upstream-Status: Pending | ||
| 7 | |||
| 8 | Signed-off-by: Joe Slater <joe.slater@windriver.com> | ||
| 9 | |||
| 10 | --- a/src/Makefile | ||
| 11 | +++ b/src/Makefile | ||
| 12 | @@ -2507,11 +2507,14 @@ installtools: $(TOOLS) $(DESTDIR)$(exec_ | ||
| 13 | rm -rf $$cvs; \ | ||
| 14 | fi | ||
| 15 | -chmod $(FILEMOD) $(DEST_TOOLS)/* | ||
| 16 | -# replace the path in some tools | ||
| 17 | + | ||
| 18 | +# replace the path in some tools, but not when cross-compiling | ||
| 19 | +ifneq ($(CROSS_COMPILING),1) | ||
| 20 | perlpath=`./which.sh perl` && sed -e "s+/usr/bin/perl+$$perlpath+" $(TOOLSSOURCE)/efm_perl.pl >$(DEST_TOOLS)/efm_perl.pl | ||
| 21 | awkpath=`./which.sh nawk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; if test -z "$$awkpath"; then \ | ||
| 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)/*` | ||
| 26 | |||
| 27 | # install the language specific files for tools, if they were unpacked | ||
