1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-19 08:47:09 +00:00
termux-packages/packages/fossil/src-popen.c.patch
Henrik Grimler 52103c6129 Updates for some packages (#5070)
* imagemagick: update to 7.0.10.2

* fossil: update to 2.10

Had to disable tests checking for sqlite3 as they try to run cross-compiled tests

* automake: update to 1.16.2

* ghostscript: update to 9.52

* cmake: update to 3.17.0

* git: update to 2.26.0

* krb5: update to 1.18

* ldc: update to 1.20.1
2020-03-24 15:27:02 +01:00

12 lines
379 B
Diff

--- ./src/popen.c.orig 2020-03-24 09:01:15.178685700 +0100
+++ ./src/popen.c 2020-03-24 09:03:05.615137701 +0100
@@ -200,7 +200,7 @@
if( bDirect ){
execl(zCmd, zCmd, (char*)0);
}else{
- execl("/bin/sh", "/bin/sh", "-c", zCmd, (char*)0);
+ execl("@TERMUX_PREFIX@/bin/sh", "@TERMUX_PREFIX@/bin/sh", "-c", zCmd, (char*)0);
}
return 1;
}else{