From 1c7d6584a7811b7785ae5c1e378f14b5ba0971cf Mon Sep 17 00:00:00 2001 From: takeshi_hoshina Date: Mon, 2 Nov 2020 11:07:33 +0900 Subject: basesystem-jj recipes --- .../perl/perl/perl-errno-generation-gcc5.patch | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 external/poky/meta/recipes-devtools/perl/perl/perl-errno-generation-gcc5.patch (limited to 'external/poky/meta/recipes-devtools/perl/perl/perl-errno-generation-gcc5.patch') diff --git a/external/poky/meta/recipes-devtools/perl/perl/perl-errno-generation-gcc5.patch b/external/poky/meta/recipes-devtools/perl/perl/perl-errno-generation-gcc5.patch deleted file mode 100644 index 7379d8b8..00000000 --- a/external/poky/meta/recipes-devtools/perl/perl/perl-errno-generation-gcc5.patch +++ /dev/null @@ -1,37 +0,0 @@ -Upstream-Status:Inappropriate [embedded specific] - -The upstream code assumes that the compiler version used to compiler miniperl/perl-native -is the same as the one being used to build the perl binary. Since most people are not running -systems with gcc 5, it is unlikely that it will work on any supported host. Switch out gccversion -for the version extracted from $CC --version. - -Jeremy Puhlman - -Fix spaces in brackets while running $CC --version -Signed-off-by: Hongxu Jia ---- - ext/Errno/Errno_pm.PL | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL -index 1fd29d0..7976ea2 100644 ---- a/ext/Errno/Errno_pm.PL -+++ b/ext/Errno/Errno_pm.PL -@@ -224,9 +224,13 @@ sub write_errno_pm { - - { # BeOS (support now removed) did not enter this block - # invoke CPP and read the output -+ my $compiler = $ENV{'CC'}; -+ my $compiler_out = `$compiler --version`; -+ $compiler_out =~ s/\(.*\)/;/; -+ my @compiler_version = split / /,$compiler_out; - - my $inhibit_linemarkers = ''; -- if ($Config{gccversion} =~ /\A(\d+)\./ and $1 >= 5) { -+ if (@compiler_version[2] =~ /\A(\d+)\./ and $1 >= 5) { - # GCC 5.0 interleaves expanded macros with line numbers breaking - # each line into multiple lines. RT#123784 - $inhibit_linemarkers = ' -P'; --- -1.9.1 - -- cgit 1.2.3-korg