commit: 50740c75850bd290b307990e25fbd874508e1239
Author: Robin Kauffman <robin.kauffman <AT> gmail <DOT> com>
AuthorDate: Mon Sep 8 20:49:27 2014 +0000
Commit: Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Mon Sep 8 20:49:27 2014 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=50740c75
Fix dev-lang/mono-9999 build (src_prepare())
Mono upstream no longer has mono/metadata/Makefile.am named
mono/metadata/Makefile.am.in. Trying to duplicate Makefile.am.in to
Makefile.am is therefore pointless. Removing this line allows src_prepare to
succeed. Change occurred in upstream at commit (
mono/mono@ad8236ebb857acf1459d7c87b85df82918dc2313 ).
---
dev-lang/mono/mono-9999.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dev-lang/mono/mono-9999.ebuild b/dev-lang/mono/mono-9999.ebuild
index 6a5db44..6082f70 100644
--- a/dev-lang/mono/mono-9999.ebuild
+++ b/dev-lang/mono/mono-9999.ebuild
@@ -45,7 +45,6 @@ pkg_setup() {
src_prepare() {
cat "${S}/mono/mini/Makefile.am.in" > "${S}/mono/mini/Makefile.am" ||
die
- cat "${S}/mono/metadata/Makefile.am.in" >
"${S}/mono/metadata/Makefile.am" || die
eautoreconf
# we need to sed in the paxctl-ng -mr in the runtime/mono-wrapper.in so
it don't
@@ -112,4 +111,4 @@ src_install() {
# for reference.
rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mscorlib.dll.so
rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mcs.exe.so
-}
\ No newline at end of file
+}