summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl-sanity/files/0001-Make-sure-install.perl-runs-before-install.man.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl-sanity/files/0001-Make-sure-install.perl-runs-before-install.man.patch')
-rw-r--r--meta/recipes-devtools/perl-sanity/files/0001-Make-sure-install.perl-runs-before-install.man.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/meta/recipes-devtools/perl-sanity/files/0001-Make-sure-install.perl-runs-before-install.man.patch b/meta/recipes-devtools/perl-sanity/files/0001-Make-sure-install.perl-runs-before-install.man.patch
deleted file mode 100644
index 26590f5908..0000000000
--- a/meta/recipes-devtools/perl-sanity/files/0001-Make-sure-install.perl-runs-before-install.man.patch
+++ /dev/null
@@ -1,27 +0,0 @@
1From 965adc80636e24e9608ca983c18c95cae08de021 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Mon, 21 Jan 2019 12:09:13 +0100
4Subject: [PATCH] Make sure install.perl runs before install.man
5
6Otherwise, install.man may attempt to write to non-existing directory:
7| Can't open file /home/pokybuild/yocto-worker/qemux86-64-x32/build/build/tmp/work/x86_64_x32-poky-linux-gnux32/perl/5.28.1-r0/image/usr/libx32/perl5/5.28.1/x86_64-linux/.packlist: No such file or directory at installman line 183.
8
9Upstream-Status: Submitted [https://github.com/arsv/perl-cross/issues/72]
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11---
12 Makefile | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/Makefile b/Makefile
16index cd8d75f..82bdc1d 100644
17--- a/Makefile
18+++ b/Makefile
19@@ -410,7 +410,7 @@ install.perl: installperl | miniperl$X
20 ./miniperl_top installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS)
21 -@test ! -s extras.lst || $(MAKE) extras.install
22
23-install.man: installman pod/perltoc.pod | miniperl$X
24+install.man: install.perl installman pod/perltoc.pod | miniperl$X
25 ./miniperl_top installman --destdir=$(DESTDIR) $(INSTALLFLAGS)
26
27 ifneq ($(perlname),perl)