Fredrik Fornwall
9 years ago
3 changed files with 29 additions and 1 deletions
@ -0,0 +1,12 @@ |
|||
diff -u -r ../node-v6.2.0/lib/child_process.js ./lib/child_process.js
|
|||
--- ../node-v6.2.0/lib/child_process.js 2016-05-17 15:53:06.000000000 -0400
|
|||
+++ ./lib/child_process.js 2016-05-18 16:31:45.574685443 -0400
|
|||
@@ -335,7 +335,7 @@
|
|||
if (typeof options.shell === 'string') |
|||
file = options.shell; |
|||
else if (process.platform === 'android') |
|||
- file = '/system/bin/sh';
|
|||
+ file = '@TERMUX_PREFIX@/bin/sh';
|
|||
else |
|||
file = '/bin/sh'; |
|||
args = ['-c', command]; |
@ -0,0 +1,15 @@ |
|||
Backport of https://github.com/nodejs/node/pull/6820 |
|||
|
|||
diff -u -r ../node-v6.2.0/src/node_config.cc ./src/node_config.cc
|
|||
--- ../node-v6.2.0/src/node_config.cc 2016-05-17 15:53:07.000000000 -0400
|
|||
+++ ./src/node_config.cc 2016-05-18 16:45:34.588991777 -0400
|
|||
@@ -29,8 +29,8 @@
|
|||
void InitConfig(Local<Object> target, |
|||
Local<Value> unused, |
|||
Local<Context> context) { |
|||
-#ifdef NODE_HAVE_I18N_SUPPORT
|
|||
Environment* env = Environment::GetCurrent(context); |
|||
+#ifdef NODE_HAVE_I18N_SUPPORT
|
|||
|
|||
READONLY_BOOLEAN_PROPERTY("hasIntl"); |
|||
|
Loading…
Reference in new issue