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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Shields <jo.shields@xamarin.com>2017-02-08 17:04:58 +0300
committerJo Shields <jo.shields@xamarin.com>2017-02-08 17:09:25 +0300
commit3ed4e2aeb88d82980bd636b4850a1018d8c6fc17 (patch)
tree8833b4f68f043a7ff4ba75b8675e7a91cd18b462 /main/Makefile.am
parent096d323d3982e2495077357e2e68ea2872299783 (diff)
Explicitly force serial NuGet restore
This works around a bug in the Mono runtime which NuGet exposes when restoring lots of packages, and should make the MonoDevelop build much more dependable. (cherry picked from commit b2f27321197c9aaadfc944ae5bc476371d7c9638)
Diffstat (limited to 'main/Makefile.am')
-rw-r--r--main/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Makefile.am b/main/Makefile.am
index e5ee9ed5d9..9e50ddc974 100644
--- a/main/Makefile.am
+++ b/main/Makefile.am
@@ -22,7 +22,7 @@ clean-local: sln_clean
cd build && $(MAKE) clean
NUGET_FOUND = $$(echo $$(which nuget))
-NUGET_RESTORE = mono external/nuget-binary/nuget.exe restore;
+NUGET_RESTORE = mono external/nuget-binary/nuget.exe restore -DisableParallelProcessing;
#FIXME: move the restore logic into MSBuild (Before.sln.targets),
# see: https://github.com/kzu/NuGet.Restore