summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2025-01-03 16:30:00 +0100
committerConrad Kostecki <conikost@gentoo.org>2025-01-04 23:47:05 +0100
commit02c5883aa6145d0a3710648c8b30a57c0cf16074 (patch)
tree41b130e4de02b77cf3ffd417321bc37b1cfdffbe /dev-lang/perl
parentdev-games/physfs: remove unused patch(es) (diff)
downloadgentoo-02c5883aa6145d0a3710648c8b30a57c0cf16074.tar.gz
gentoo-02c5883aa6145d0a3710648c8b30a57c0cf16074.tar.bz2
gentoo-02c5883aa6145d0a3710648c8b30a57c0cf16074.zip
dev-lang/perl: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lang/perl')
-rw-r--r--dev-lang/perl/files/perl-5.36.0-fix-configure-for-clang.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-lang/perl/files/perl-5.36.0-fix-configure-for-clang.patch b/dev-lang/perl/files/perl-5.36.0-fix-configure-for-clang.patch
deleted file mode 100644
index 3ad508c95f7e..000000000000
--- a/dev-lang/perl/files/perl-5.36.0-fix-configure-for-clang.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 40db21129c0ba08ea457b6e40e7357e86ea1404b Mon Sep 17 00:00:00 2001
-From: Raul E Rangel <rrangel@chromium.org>
-Date: Fri, 28 Jul 2023 15:50:49 -0600
-Subject: [PATCH] hints/linux: Add additional expression when matching clang
-
-Newer versions of clang actually print the distro before `clang` when
-calling `$CC --version`. This changes fixes the regex so it can match
-this new pattern.
-
-i.e.,
-
- $ clang --version
- Debian clang version 14.0.6
-
- $ x86_64-pc-linux-gnu-clang --version
- Chromium OS 17.0_pre496208_p20230501-r1 clang version 17.0.0
-
-Fixes #21099
-
-BUG=b:283275881
-See: https://github.com/Perl/perl5/issues/21099
----
- hints/linux.sh | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/hints/linux.sh b/hints/linux.sh
-index e1508c7509..5202b28b09 100644
---- a/hints/linux.sh
-+++ b/hints/linux.sh
-@@ -166,7 +166,7 @@ esac
- if [ -x /usr/bin/gcc ] ; then
- gcc=/usr/bin/gcc
- # clang also provides -print-search-dirs
--elif ${cc:-cc} --version 2>/dev/null | grep -q '^clang ' ; then
-+elif ${cc:-cc} --version 2>/dev/null | grep -q -e '^clang version' -e ' clang version'; then
- gcc=${cc:-cc}
- else
- gcc=gcc
---
-2.41.0.585.gd2178a4bd4-goog
-