0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-05-10 16:15:44 +00:00
Files
termux-packages/packages/boost/boost-process-v1-detail-posix-shell_path.hpp.patch
Aditya Alok bfc97467c6 bump(main/boost): 1.87.0
Signed-off-by: Aditya Alok <alok@termux.dev>
2025-03-19 21:52:44 +05:30

19 lines
519 B
Diff

--- 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";
}
}}}}}