Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Jorgensen <ajorgensen@novell.com>2010-12-17 00:52:29 +0300
committerAndrew Jorgensen <ajorgensen@novell.com>2010-12-17 19:10:54 +0300
commite704c1eb9715c411672647229c3c063c553f23bb (patch)
treefb4e57ea125fb40f7125f45fd7d9dad43d3b6dd3 /Makefile.am
parent82264df085188d39e5980217d51711e3bc3e3891 (diff)
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.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am3
1 files changed, 2 insertions, 1 deletions
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-*