diff options
author | Ruslan Bilovol <ruslan.bilovol@gmail.com> | 2019-01-26 14:58:00 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-27 13:05:17 +0000 |
commit | f65022e40dc6c76fa2b7b334d2f9192e2eaacd0e (patch) | |
tree | 2879ce80b5af3e6f4d19c335d08b9b1a1b3ee54a /meta | |
parent | fd4bb0f7537122153209229ffcfb65052e033953 (diff) | |
download | poky-f65022e40dc6c76fa2b7b334d2f9192e2eaacd0e.tar.gz |
perl: drop lost patch
Commit 68552c353255 "perl: remove the previous version of the recipe"
dropped 0001-Makefile.SH-Pod-Simple-requires-Getopt-Long.patch
from recipe, but left the patch itself in source tree.
Remove this patch since nobody uses it.
Cc: Alexander Kanavin <alex.kanavin@gmail.com>
(From OE-Core rev: 87a646cf3115bff10bbc6a85e9d79b93fde2379f)
Signed-off-by: Ruslan Bilovol <ruslan.bilovol@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/perl/perl/0001-Makefile.SH-Pod-Simple-requires-Getopt-Long.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/recipes-devtools/perl/perl/0001-Makefile.SH-Pod-Simple-requires-Getopt-Long.patch b/meta/recipes-devtools/perl/perl/0001-Makefile.SH-Pod-Simple-requires-Getopt-Long.patch deleted file mode 100644 index aad46f3e42..0000000000 --- a/meta/recipes-devtools/perl/perl/0001-Makefile.SH-Pod-Simple-requires-Getopt-Long.patch +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | From 58c69d65b19b5f9a35e1f5ce08d2ea47884233d3 Mon Sep 17 00:00:00 2001 | ||
2 | From: Robert Yang <liezhi.yang@windriver.com> | ||
3 | Date: Thu, 27 Dec 2018 00:18:51 -0800 | ||
4 | Subject: [PATCH] Makefile.SH: Pod-Simple requires Getopt-Long | ||
5 | |||
6 | Fixed a race issue when parallel build: | ||
7 | |||
8 | Running pm_to_blib for cpan/Pod-Simple directly | ||
9 | [snip] | ||
10 | /path/to/cpan/podlators/../../miniperl "-I../../lib" "-I../../lib" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/pod2man | ||
11 | Can't locate Getopt/Long.pm in @INC [snip] | ||
12 | |||
13 | Upstream-Status: Submitted[https://www.nntp.perl.org/group/perl.perl5.porters/2018/12/msg253236.html] | ||
14 | |||
15 | Signed-off-by: Robert Yang <liezhi.yang@windriver.com> | ||
16 | --- | ||
17 | Makefile.SH | 1 + | ||
18 | 1 file changed, 1 insertion(+) | ||
19 | |||
20 | diff --git a/Makefile.SH b/Makefile.SH | ||
21 | index 9848d55..7a164e7 100755 | ||
22 | --- a/Makefile.SH | ||
23 | +++ b/Makefile.SH | ||
24 | @@ -189,6 +189,7 @@ dynamic_list=' ' | ||
25 | dynamic_ext_re="lib/auto/re/re.$dlext" | ||
26 | extra_dep=' | ||
27 | ext/Pod-Functions/pm_to_blib: cpan/Pod-Simple/pm_to_blib cpan/Pod-Escapes/pm_to_blib pod/perlfunc.pod | ||
28 | +cpan/Pod-Simple/pm_to_blib: cpan/Getopt-Long/pm_to_blib | ||
29 | ' | ||
30 | for f in $dynamic_ext; do | ||
31 | : the dependency named here will never exist | ||
32 | -- | ||
33 | 2.10.2 | ||
34 | |||