dev-lang/crystal: remove unused patch
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Tue, 5 May 2020 12:52:38 +0000 (14:52 +0200)
committerSergei Trofimovich <slyfox@gentoo.org>
Tue, 5 May 2020 20:58:41 +0000 (21:58 +0100)
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15651
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
dev-lang/crystal/files/crystal-0.29.0-no-usr-lib.patch [deleted file]

diff --git a/dev-lang/crystal/files/crystal-0.29.0-no-usr-lib.patch b/dev-lang/crystal/files/crystal-0.29.0-no-usr-lib.patch
deleted file mode 100644 (file)
index 15f2ac7..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-On amd64 linux /usr/lib does not match default 64-bit ABI.
-
-Let's rely on default compiler and linker paths instead.
---- a/src/compiler/crystal/codegen/link.cr
-+++ b/src/compiler/crystal/codegen/link.cr
-@@ -105,7 +105,7 @@ module Crystal
-     end
-     private def lib_flags_posix
--      library_path = ["/usr/lib", "/usr/local/lib"]
-+      library_path = [] of String
-       has_pkg_config = nil
-       String.build do |flags|