1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-26 21:00:24 +00:00
termux-packages/packages/libtsduck/src-libtsduck-base-system-tsForkPipe.cpp.patch
2022-02-15 01:20:24 +09:00

12 lines
549 B
Diff

--- a/src/libtsduck/base/system/tsForkPipe.cpp
+++ b/src/libtsduck/base/system/tsForkPipe.cpp
@@ -451,7 +451,7 @@
// Execute the command if there was no prior error.
if (message == nullptr) {
- ::execl("/bin/sh", "/bin/sh", "-c", command.toUTF8().c_str(), nullptr);
+ ::execl("@TERMUX_PREFIX@/bin/sh", "@TERMUX_PREFIX@/bin/sh", "-c", command.toUTF8().c_str(), nullptr);
// Should not return, so this is an error if we get there.
error = errno;
message = "exec error";