From 7018768403cf38f9a8ca190e982a0cf90e2f3d6a Mon Sep 17 00:00:00 2001 From: Atsushi Eno Date: Fri, 24 Mar 2017 14:18:51 +0900 Subject: [PATCH] [xa-prep-tasks] Fix message for missing dependencies on Linux. You cannot say "Unsupported platform Linux!" xamarin-android does build on Linux. It is just xa-prep-tasks who is incapable of dealing with it. --- .../Xamarin.Android.BuildTools.PrepTasks/PrepareInstall.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-tools/xa-prep-tasks/Xamarin.Android.BuildTools.PrepTasks/PrepareInstall.cs b/build-tools/xa-prep-tasks/Xamarin.Android.BuildTools.PrepTasks/PrepareInstall.cs index 112810fb816..73d23d89e36 100644 --- a/build-tools/xa-prep-tasks/Xamarin.Android.BuildTools.PrepTasks/PrepareInstall.cs +++ b/build-tools/xa-prep-tasks/Xamarin.Android.BuildTools.PrepTasks/PrepareInstall.cs @@ -95,7 +95,7 @@ void SetInstallCommand () ver += $" and <= {max}"; } } - Log.LogError ($"Unsupported platform {HostOS}! Do not know how to install program `{Program.ItemSpec}`{ver}."); + Log.LogError ($"Missing dependency detected. For {HostOS} we do not know how to install program `{Program.ItemSpec}`{ver}."); } } }