diff options
Diffstat (limited to 'meta/recipes-devtools/perl')
-rw-r--r-- | meta/recipes-devtools/perl/perl-5.14.2/perl-build-in-t-dir.patch | 42 | ||||
-rw-r--r-- | meta/recipes-devtools/perl/perl-native_5.14.2.bb | 5 | ||||
-rw-r--r-- | meta/recipes-devtools/perl/perl_5.14.2.bb | 3 |
3 files changed, 47 insertions, 3 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.14.2/perl-build-in-t-dir.patch b/meta/recipes-devtools/perl/perl-5.14.2/perl-build-in-t-dir.patch new file mode 100644 index 0000000000..16064ede92 --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.14.2/perl-build-in-t-dir.patch | |||
@@ -0,0 +1,42 @@ | |||
1 | Upstream-Status:Pending | ||
2 | |||
3 | Perl cannot cross build in a path containing a directory that has the | ||
4 | name of "t". As an example, you can make the perl build fail with | ||
5 | "mkdir -p /tmp/build/t", go to the directory, unpack the sources, | ||
6 | configure and cross build. | ||
7 | |||
8 | You get an error like the following: | ||
9 | pod/buildtoc: no pods at pod/buildtoc line 305. | ||
10 | make[1]: *** [pod/perltoc.pod] Error 255 | ||
11 | |||
12 | The fix is to strip off the top directory that you are building in and | ||
13 | then execute all the same logic as before against the path relative to | ||
14 | the build directory. | ||
15 | |||
16 | Signed-off-by: Jason Wessel <jason.wessel@windriver.com> | ||
17 | --- | ||
18 | pod/buildtoc | 4 +++- | ||
19 | 1 file changed, 3 insertions(+), 1 deletion(-) | ||
20 | |||
21 | --- a/pod/buildtoc | ||
22 | +++ b/pod/buildtoc | ||
23 | @@ -274,8 +274,10 @@ if ($Build{toc}) { | ||
24 | find \&getpods => abs_from_top('lib/'); | ||
25 | |||
26 | sub getpods { | ||
27 | + my $Top = $FindBin::Bin; | ||
28 | if (/\.p(od|m)$/) { | ||
29 | my $file = $File::Find::name; | ||
30 | + $file =~ s!^$Top!!; | ||
31 | return if $file =~ qr!/lib/Pod/Functions.pm\z!; # Used only by pod itself | ||
32 | return if $file =~ m!(?:^|/)t/!; | ||
33 | return if $file =~ m!lib/Attribute/Handlers/demo/!; | ||
34 | @@ -283,7 +285,7 @@ if ($Build{toc}) { | ||
35 | return if $file =~ m!lib/Math/BigInt/t/!; | ||
36 | return if $file =~ m!/Devel/PPPort/[Hh]arness|lib/Devel/Harness!i; | ||
37 | return if $file =~ m!XS/(?:APItest|Typemap)!; | ||
38 | - my $pod = $file; | ||
39 | + my $pod = $file = $File::Find::name; | ||
40 | return if $pod =~ s/pm$/pod/ && -e $pod; | ||
41 | unless (open my $f, '<', $_) { | ||
42 | warn "$0: bogus <$file>: $!"; | ||
diff --git a/meta/recipes-devtools/perl/perl-native_5.14.2.bb b/meta/recipes-devtools/perl/perl-native_5.14.2.bb index c904c377ac..df8f0584ad 100644 --- a/meta/recipes-devtools/perl/perl-native_5.14.2.bb +++ b/meta/recipes-devtools/perl/perl-native_5.14.2.bb | |||
@@ -4,7 +4,7 @@ SECTION = "libs" | |||
4 | LICENSE = "Artistic-1.0 | GPL-1.0" | 4 | LICENSE = "Artistic-1.0 | GPL-1.0" |
5 | LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ | 5 | LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ |
6 | file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8" | 6 | file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8" |
7 | PR = "r0" | 7 | PR = "r1" |
8 | 8 | ||
9 | LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ | 9 | LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ |
10 | file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8" | 10 | file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8" |
@@ -14,7 +14,8 @@ SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \ | |||
14 | file://perl-configpm-switch.patch \ | 14 | file://perl-configpm-switch.patch \ |
15 | file://native-nopacklist.patch \ | 15 | file://native-nopacklist.patch \ |
16 | file://native-perlinc.patch \ | 16 | file://native-perlinc.patch \ |
17 | file://MM_Unix.pm.patch" | 17 | file://MM_Unix.pm.patch \ |
18 | file://perl-build-in-t-dir.patch" | ||
18 | 19 | ||
19 | SRC_URI[md5sum] = "3306fbaf976dcebdcd49b2ac0be00eb9" | 20 | SRC_URI[md5sum] = "3306fbaf976dcebdcd49b2ac0be00eb9" |
20 | SRC_URI[sha256sum] = "6488359573bd7d41761bf935f66f827dc220fb3df961ef9b775d51fbd66548d3" | 21 | SRC_URI[sha256sum] = "6488359573bd7d41761bf935f66f827dc220fb3df961ef9b775d51fbd66548d3" |
diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb index 809fc72d33..2452a4407e 100644 --- a/meta/recipes-devtools/perl/perl_5.14.2.bb +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ | |||
7 | # We need gnugrep (for -I) | 7 | # We need gnugrep (for -I) |
8 | DEPENDS = "virtual/db grep-native" | 8 | DEPENDS = "virtual/db grep-native" |
9 | DEPENDS += "gdbm zlib" | 9 | DEPENDS += "gdbm zlib" |
10 | PR = "r6" | 10 | PR = "r7" |
11 | 11 | ||
12 | # 5.10.1 has Module::Build built-in | 12 | # 5.10.1 has Module::Build built-in |
13 | PROVIDES += "libmodule-build-perl" | 13 | PROVIDES += "libmodule-build-perl" |
@@ -65,6 +65,7 @@ SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \ | |||
65 | file://perl-enable-gdbm.patch \ | 65 | file://perl-enable-gdbm.patch \ |
66 | file://cross-generate_uudmap.patch \ | 66 | file://cross-generate_uudmap.patch \ |
67 | file://fix_bad_rpath.patch \ | 67 | file://fix_bad_rpath.patch \ |
68 | file://perl-build-in-t-dir.patch \ | ||
68 | \ | 69 | \ |
69 | file://config.sh \ | 70 | file://config.sh \ |
70 | file://config.sh-32 \ | 71 | file://config.sh-32 \ |