On Thu, Apr 24, 2025 at 03:18:29PM -0500, Justin Tobler wrote: > On 25/04/24 03:38PM, Patrick Steinhardt wrote: > > diff --git a/meson.build b/meson.build > > index 8f04534c7ff..1db768380bd 100644 > > --- a/meson.build > > +++ b/meson.build > > @@ -236,7 +236,7 @@ sed = find_program('sed', dirs: program_path, native: true) > > shell = find_program('sh', dirs: program_path, native: true) > > tar = find_program('tar', dirs: program_path, native: true) > > > > -target_shell = find_program('sh', dirs: program_path, native: false) > > +target_shell = find_program('sh', dirs: program_path + [ '/bin' ], native: false) > > It might be nice to leave a comment explaining the ordering intent. Will do. Patrick