Files
termux-packages/packages/boost/boost-process-detail-posix-shell_path.hpp.patch
termux-pacman-bot 63197396c2 pkg(main/boost): Increase epoch after revert from v1.87
Signed-off-by: Aditya Alok <alok@termux.dev>
2025-01-27 21:35:43 +00:00

20 lines
636 B
Diff

diff --color -uNr boost_1_80_0/boost/process/detail/posix/shell_path.hpp boost_1_80_0.mod/boost/process/detail/posix/shell_path.hpp
--- boost_1_80_0/boost/process/detail/posix/shell_path.hpp 2022-08-03 23:47:11.000000000 -0300
+++ boost_1_80_0.mod/boost/process/detail/posix/shell_path.hpp 2022-11-04 00:06:29.634809985 -0300
@@ -18,13 +18,13 @@
inline boost::process::filesystem::path shell_path()
{
- return "/bin/sh";
+ return "@TERMUX_PREFIX@/bin/sh";
}
inline boost::process::filesystem::path shell_path(std::error_code &ec)
{
ec.clear();
- return "/bin/sh";
+ return "@TERMUX_PREFIX@/bin/sh";
}
}}}}