From e704c1eb9715c411672647229c3c063c553f23bb Mon Sep 17 00:00:00 2001 From: Andrew Jorgensen Date: Thu, 16 Dec 2010 14:52:29 -0700 Subject: [PATCH] get-monolite-latest now pulls a versioned archive In order to ensure that monolite actually works you need to ensure that the corlib in it has the same version as your runtime. Monolite archives are now versioned monolite-MONO_CORLIB_VERSION-DATE. --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index c45f6ba032f..339d38c8e8e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,7 +37,8 @@ DISTCLEANFILES= mono-uninstalled.pc # building with monolite mcslib = $(mcs_topdir)/class/lib monolite = $(mcslib)/monolite -monolite_url = http://mono.ximian.com/daily/monolite-latest.tar.gz +mono_corlib_version = $(shell sed -n "s/\#define MONO_CORLIB_VERSION //p" $(srcdir)/mono/metadata/appdomain.c) +monolite_url = http://mono.ximian.com/daily/monolite-$(mono_corlib_version)-latest.tar.gz .PHONY: get-monolite-latest get-monolite-latest: -rm -fr $(mcslib)/monolite-* -- 2.11.4.GIT