chiark / gitweb /
less: Bump revision after enabling pcre
[termux-packages] / packages / nodejs / lib-child_process.js.patch
1 diff -u -r ../node-v6.2.0/lib/child_process.js ./lib/child_process.js
2 --- ../node-v6.2.0/lib/child_process.js 2016-05-17 15:53:06.000000000 -0400
3 +++ ./lib/child_process.js      2016-05-18 16:31:45.574685443 -0400
4 @@ -335,7 +335,7 @@
5        if (typeof options.shell === 'string')
6          file = options.shell;
7        else if (process.platform === 'android')
8 -        file = '/system/bin/sh';
9 +        file = '@TERMUX_PREFIX@/bin/sh';
10        else
11          file = '/bin/sh';
12        args = ['-c', command];