X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=Makefile.am;h=ede769564985d5b87cdf226a5ee99e9783381c44;hb=e54ce145eaea1b0b5d31eb4c8d3c6569fd722ca6;hp=74707da14109c704302a1f7eab547e79082b812e;hpb=dab281b88d44ea022eb33e7895ab11c0a4f222a6;p=mono.git diff --git a/Makefile.am b/Makefile.am index 74707da1410..ede76956498 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,7 +19,7 @@ all: update_submodules SUBMODULE_ERROR='Could not recursively update all git submodules. You may experience compilation problems if some submodules are out of date' update_submodules: - @$(srcdir)/scripts/update_submodules + @$(srcdir)/scripts/update_submodules.sh .PHONY: update_submodules @@ -42,15 +42,8 @@ dist-hook: test -d $(distdir)/mcs || mkdir $(distdir)/mcs d=`cd $(distdir)/mcs && pwd`; cd $(mcs_topdir) && $(MAKE) distdir=$$d dist-recursive rm -rf `find $(top_distdir)/external -path '*\.git'` - rm -f `find $(top_distdir)/external -path '*\.exe'` - rm -f `find $(top_distdir)/external -path '*\.dll' -not -path '*/binary-reference-assemblies/*'` - cp mcs/class/lib/basic/System.Configuration.dll mcs/class/lib/monolite/ - cp mcs/class/lib/basic/System.Security.dll mcs/class/lib/monolite/ -# Disable this for now because it is very slow and causes wrench to timeout: -# test ! -d $(GIT_DIR) || ./scripts/commits-to-changelog.py --root=$(distdir) last-commit-with-compulsory-changelog-entry - -mac-sdk-package: - external/bockbuild/bb MacSDK --package + rm -f `find $(top_distdir)/external -path '*\.exe' -not -path '*/roslyn-binaries/*'` + rm -f `find $(top_distdir)/external -path '*\.dll' -not -path '*/binary-reference-assemblies/*' -not -path '*/roslyn-binaries/*'` pkgconfigdir = $(libdir)/pkgconfig noinst_DATA = mono-uninstalled.pc @@ -58,17 +51,13 @@ DISTCLEANFILES= mono-uninstalled.pc # building with monolite mcslib = $(mcs_topdir)/class/lib -monolite = $(mcslib)/monolite -mono_corlib_version = $(shell sed -n "s/\#define MONO_CORLIB_VERSION //p" $(srcdir)/mono/metadata/appdomain.c) -monolite_url = http://download.mono-project.com/monolite/monolite-$(mono_corlib_version)-latest.tar.gz +monolite_url = https://download.mono-project.com/monolite/monolite-$(MONO_CORLIB_VERSION)-latest.tar.gz .PHONY: get-monolite-latest get-monolite-latest: - -rm -fr $(mcslib)/monolite-* - -mkdir -p $(mcslib) - test ! -d $(monolite) || test ! -d $(monolite).old || rm -fr $(monolite).old - test ! -d $(monolite) || mv -f $(monolite) $(monolite).old - cd $(mcslib) && { (wget -O- $(monolite_url) || curl $(monolite_url)) | gzip -d | tar xf - ; } - cd $(mcslib) && mv -f monolite-* monolite + -rm -fr $(mcslib)/monolite/$(MONO_CORLIB_VERSION) + -mkdir -p $(mcslib)/monolite + cd $(mcslib) && { (wget -O- $(monolite_url) || curl -L $(monolite_url)) | gzip -d | tar xf - ; } + cd $(mcslib) && mv -f monolite-* monolite/$(MONO_CORLIB_VERSION) if BITCODE BITCODE_CHECK=yes