diff --git a/build/MakeTasks.cs b/build/MakeTasks.cs index b9237134f..d800723ad 100644 --- a/build/MakeTasks.cs +++ b/build/MakeTasks.cs @@ -61,7 +61,7 @@ public abstract class MakeTask(string location, ProcessArgumentBuilder? args = n public override void Run(BuildContext context) { var exitCode = context.StartProcess("make", new ProcessSettings() { - WorkingDirectory = Location, + WorkingDirectory = context.Paths.RootDirectory.Combine(Location), Arguments = Args, EnvironmentVariables = new Dictionary { { "CONFIGURATION", context.BuildConfiguration } } });