diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-08-25 16:38:42 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-08-26 23:32:34 +0100 |
commit | 6b588913738657cad6d656ad085ce248263c0d59 (patch) | |
tree | ecacea89b02c0c685c9912071400cb02daf2879e | |
parent | dev-perl/DBIx-SearchBuilder: remove unused patch (diff) | |
download | gentoo-6b588913738657cad6d656ad085ce248263c0d59.tar.gz gentoo-6b588913738657cad6d656ad085ce248263c0d59.tar.bz2 gentoo-6b588913738657cad6d656ad085ce248263c0d59.zip |
dev-perl/Devel-NYTProf: remove unused patch(es)
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | dev-perl/Devel-NYTProf/files/Devel-NYTProf-6.06-cpprun.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-perl/Devel-NYTProf/files/Devel-NYTProf-6.06-cpprun.patch b/dev-perl/Devel-NYTProf/files/Devel-NYTProf-6.06-cpprun.patch deleted file mode 100644 index 786a525a7dcf..000000000000 --- a/dev-perl/Devel-NYTProf/files/Devel-NYTProf-6.06-cpprun.patch +++ /dev/null @@ -1,36 +0,0 @@ -From aaa04b28c99e0d2bf244dbcb274b4df6fe6fa50d Mon Sep 17 00:00:00 2001 -From: Kent Fredric <kentnl@gentoo.org> -Date: Tue, 7 Jul 2020 23:08:00 +1200 -Subject: Allow CPP override in ENV - -When Perl is built with -Dcpp="$(gc-getCPP)", the end result is: - -- $Config{cpp} = "${CHOST}-gcc" -- $Config{cpprun} = "${CHOST}-gcc -E" - -And of course, Devel-NYTProf uses the former, and so it tries to compile -the damn header instead of just preprocessing it. - -This provides a correction, and an override. - -Bug: https://github.com/timbunce/devel-nytprof/issues/139 ---- - Makefile.PL | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/Makefile.PL b/Makefile.PL -index 60025de..6786e29 100644 ---- a/Makefile.PL -+++ b/Makefile.PL -@@ -59,7 +59,7 @@ utime time(), time(), "t/test40pmc.pmc" - - # --- Discover how much of stdio is implemented - --my $cpp = $Config{cpp} || do { -+my $cpp = $ENV{CPP} || $Config{cpprun} || do { - warn "Warning: cpp not found in your perl config. Falling back to 'cat'\n"; - 'cat'; - }; --- -2.27.0 - |