diff options
Diffstat (limited to 'package/nodejs/4.1.2/0003-Use-a-python-variable-instead-of-hardcoding-Python.patch')
-rw-r--r-- | package/nodejs/4.1.2/0003-Use-a-python-variable-instead-of-hardcoding-Python.patch | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/package/nodejs/4.1.2/0003-Use-a-python-variable-instead-of-hardcoding-Python.patch b/package/nodejs/4.1.2/0003-Use-a-python-variable-instead-of-hardcoding-Python.patch index 2e266afd9d..3104644170 100644 --- a/package/nodejs/4.1.2/0003-Use-a-python-variable-instead-of-hardcoding-Python.patch +++ b/package/nodejs/4.1.2/0003-Use-a-python-variable-instead-of-hardcoding-Python.patch @@ -14,7 +14,7 @@ the nodejs build system. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> [Martin: adapt to 0.12.5] Signed-off-by: Martin Bark <martin@barkynet.com> -[yann.morin.1998@free.fr: adapat to 4.1.2] +[yann.morin.1998@free.fr: adapt to 4.1.2] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> --- deps/v8/tools/gyp/v8.gyp | 8 ++++---- @@ -86,3 +86,16 @@ index c703155..06c0b2b 100644 '../../tools/gen-postmortem-metadata.py', '<@(_outputs)', '<@(heapobject_files)' +diff --git a/deps/v8/build/toolchain.gypi b/deps/v8/build/toolchain.gypi +index c703155..06c0b2b 100644 +--- a/deps/v8/build/toolchain.gypi ++++ b/deps/v8/build/toolchain.gypi +@@ -38,7 +38,7 @@ + 'ubsan%': 0, + 'ubsan_vptr%': 0, + 'v8_target_arch%': '<(target_arch)', +- 'v8_host_byteorder%': '<!(python -c "import sys; print sys.byteorder")', ++ 'v8_host_byteorder%': '<!(<(python) -c "import sys; print sys.byteorder")', + # Native Client builds currently use the V8 ARM JIT and + # arm/simulator-arm.cc to defer the significant effort required + # for NaCl JIT support. The nacl_target_arch variable provides |