]> git.ipfire.org Git - thirdparty/git.git/commit
meson: prefer shell at "/bin/sh"
authorPatrick Steinhardt <ps@pks.im>
Fri, 25 Apr 2025 14:11:29 +0000 (16:11 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 25 Apr 2025 16:54:39 +0000 (09:54 -0700)
commit4cba20fbdc68f4f968defc796647b103b72c9609
tree5014c02df3a95cd2a8d8b2ebc68072c304739692
parent2cfe0541e711be39a47d093cba608c0700d027ec
meson: prefer shell at "/bin/sh"

Meson detects the path of the target shell via `find_program("sh")`,
which essentially does a lookup via `PATH`. This may easily lead to a
subtly-broken Git distribution when the build host has its shell in a
location that the target host doesn't know about.

Fix the issue by appending "/bin" to the custom program path, which
causes us to prefer "/bin/sh" over a `PATH`-based lookup. While
"/bin/sh" isn't standardized, this path tends to work alright on Linux
and BSD distributions. Furthermore, "/bin/sh" is also the path we pick
in our Makefile by default, which further demonstrates that this shell
fulfills our needs.

Note that we intentionally append, not prepend, to the custom program
path. This is because the program path can be configured by the user via
the `-Dsane_tool_path=` build option, which should take precedence over
any defaults we pick for the user.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
meson.build