summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-03-10 21:50:07 +0100
committerMichał Górny <mgorny@gentoo.org>2021-03-10 21:51:54 +0100
commitae84482e60e3422267b80eb33f7fdc34cb8b7b94 (patch)
treee1aa2826fae7f6ad5b138b40df149d656168d092 /sys-devel
parentdev-util/imediff2: Version bump for 1.1.2.1 (diff)
downloadgentoo-ae84482e60e3422267b80eb33f7fdc34cb8b7b94.tar.gz
gentoo-ae84482e60e3422267b80eb33f7fdc34cb8b7b94.tar.bz2
gentoo-ae84482e60e3422267b80eb33f7fdc34cb8b7b94.zip
sys-devel/clang: Remove old patches
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-devel')
-rw-r--r--sys-devel/clang/files/8.0.1/darwin_prefix-include-paths.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/sys-devel/clang/files/8.0.1/darwin_prefix-include-paths.patch b/sys-devel/clang/files/8.0.1/darwin_prefix-include-paths.patch
deleted file mode 100644
index 7744b942d0e5..000000000000
--- a/sys-devel/clang/files/8.0.1/darwin_prefix-include-paths.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/lib/Frontend/InitHeaderSearch.cpp
-+++ b/lib/Frontend/InitHeaderSearch.cpp
-@@ -233,6 +233,7 @@
- case llvm::Triple::Bitrig:
- break;
- default:
-+ AddPath("@GENTOO_PORTAGE_EPREFIX@/usr/include", System, false);
- // FIXME: temporary hack: hard-coded paths.
- AddPath("/usr/local/include", System, false);
- break;
-@@ -505,6 +506,7 @@
- // Add the default framework include paths on Darwin.
- if (HSOpts.UseStandardSystemIncludes) {
- if (triple.isOSDarwin()) {
-+ AddPath("@GENTOO_PORTAGE_EPREFIX@/Frameworks", System, true);
- AddPath("/System/Library/Frameworks", System, true);
- AddPath("/Library/Frameworks", System, true);
- }