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:
authorMike Krüger <mkrueger@xamarin.com>2016-10-07 11:51:21 +0300
committerMike Krüger <mkrueger@xamarin.com>2016-10-07 11:51:21 +0300
commit261eae9d0251c817cc5804b8b00d8991e65500a6 (patch)
tree6522a71814501acec2526cc334c8557dd2a4fd6c /main/Makefile.am
parent9a8a2383fe0d3057c3c5bb03a8bb222790817979 (diff)
Fix build on linux.
Updated nuget binary, removed unused .nuget (it's now a submodule) And tweaked the makefile so on linux always our nuget is taken.
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 0e45d943ba..694108a8a9 100644
--- a/main/Makefile.am
+++ b/main/Makefile.am
@@ -23,7 +23,7 @@ clean-local: sln_clean
NUGET_FOUND = $$(echo $$(which nuget))
NUGET_RESTORE = \
- if [ "x$(NUGET_FOUND)" = "x" ]; then \
+ if [ "x$(NUGET_FOUND)" = "x" ] || [ "x$(OSTYPE)" = "xlinux-gnu" ]; then \
mono external/nuget-binary/nuget.exe restore; \
else \
nuget restore; \