--- boost_1_87_0/boost/process/v1/detail/posix/shell_path.hpp 2024-12-05 06:23:35.000000000 +0530 +++ boost_1_87_0.mod/boost/process/v1/detail/posix/shell_path.hpp 2025-01-27 17:55:31.181750932 +0530 @@ -18,13 +18,13 @@ inline boost::process::v1::filesystem::path shell_path() { - return "/bin/sh"; + return "@TERMUX_PREFIX@/bin/sh"; } inline boost::process::v1::filesystem::path shell_path(std::error_code &ec) { ec.clear(); - return "/bin/sh"; + return "@TERMUX_PREFIX@/bin/sh"; } }}}}}