summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl-sanity/files/0001-Makefile-Make-install.perl-depend-on-install.sym.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl-sanity/files/0001-Makefile-Make-install.perl-depend-on-install.sym.patch')
-rw-r--r--meta/recipes-devtools/perl-sanity/files/0001-Makefile-Make-install.perl-depend-on-install.sym.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-devtools/perl-sanity/files/0001-Makefile-Make-install.perl-depend-on-install.sym.patch b/meta/recipes-devtools/perl-sanity/files/0001-Makefile-Make-install.perl-depend-on-install.sym.patch
deleted file mode 100644
index 1267339978..0000000000
--- a/meta/recipes-devtools/perl-sanity/files/0001-Makefile-Make-install.perl-depend-on-install.sym.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From a0a2fcac3735ca90017976d2b87f550d051a969b Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Tue, 22 Jan 2019 19:21:27 -0800
4Subject: [PATCH] Makefile: Make install.perl depend on install.sym
5
6Fix a race issue when install, there might be no
7$(installbin)/$(perlname)$(version) when install.sym runs after install.perl
8since install.sym removes it.
9
10Upstream-Status: Submitted [https://github.com/arsv/perl-cross/pull/73]
11
12Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
13---
14 Makefile | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/Makefile b/Makefile
18index cd8d75f..1aa8ef2 100644
19--- a/Makefile
20+++ b/Makefile
21@@ -406,7 +406,7 @@ META.yml: Porting/makemeta Porting/Maintainers.pl Porting/Maintainers.pm miniper
22
23 install: install.perl install.sym install.man
24
25-install.perl: installperl | miniperl$X
26+install.perl: installperl install.sym | miniperl$X
27 ./miniperl_top installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
28 -@test ! -s extras.lst || $(MAKE) extras.install
29
30--
312.10.2
32