0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-23 16:02:28 +00:00
Files
termux-packages/packages/boost/boost-process-detail-posix-shell_path.hpp.patch
Aditya Alok bc8e9cde9c Revert "bump(main/boost): 1.87.0"
- Boost 1.87 breaks many packages. It needs proper testing first.

This reverts commit 90e12ddb71.
This reverts commit 7624097a47.

Signed-off-by: Aditya Alok <alok@termux.dev>
2025-01-28 02:14:06 +05:30

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