Skip to content

Commit

Permalink
[WIP] don't double-prefix the tool
Browse files Browse the repository at this point in the history
  • Loading branch information
grendello committed Jul 8, 2021
1 parent c54cbad commit e5f0c1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Xamarin.Android.Build.Tasks/Tasks/NdkUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public static string GetNdkTool (string androidNdkPath, AndroidTargetArch arch,

string toolPath = GetToolPath (toolName);
if (String.IsNullOrEmpty (toolPath) && IsBinutilsToolOrLd ()) {
toolPath = GetBundledToolPath (GetPrefixedName (toolName));
toolPath = GetBundledToolPath (toolName);
}

if (!String.IsNullOrEmpty (toolPath)) {
Expand Down

0 comments on commit e5f0c1b

Please sign in to comment.