diff options
author | Martin Bark <martin@barkynet.com> | 2015-07-14 14:20:03 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-14 16:02:01 +0200 |
commit | 20ad99535a6a8b5fc6c5f0da7afeae1169affcfd (patch) | |
tree | 53c883d5204634182509dbdb70d4af8a4e283c02 /package/nodejs/0.10.39/0001-remove-python-bz2-dependency.patch | |
parent | 23269765c8d99251157a5b90ebf59dcb51a26c1f (diff) | |
download | buildroot-20ad99535a6a8b5fc6c5f0da7afeae1169affcfd.tar.gz buildroot-20ad99535a6a8b5fc6c5f0da7afeae1169affcfd.zip |
package/nodejs: version bump to 0.10.40
Signed-off-by: Martin Bark <martin@barkynet.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/nodejs/0.10.39/0001-remove-python-bz2-dependency.patch')
-rw-r--r-- | package/nodejs/0.10.39/0001-remove-python-bz2-dependency.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/package/nodejs/0.10.39/0001-remove-python-bz2-dependency.patch b/package/nodejs/0.10.39/0001-remove-python-bz2-dependency.patch deleted file mode 100644 index 75fe437502..0000000000 --- a/package/nodejs/0.10.39/0001-remove-python-bz2-dependency.patch +++ /dev/null @@ -1,27 +0,0 @@ -Remove dependency on Python bz2 module - -The Python bz2 module is only needed in certain cases, so only import -it when needed. In the normal nodejs build, this allows to remove the -dependency on this module. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> -Index: b/deps/v8/tools/js2c.py -=================================================================== ---- a/deps/v8/tools/js2c.py -+++ b/deps/v8/tools/js2c.py -@@ -33,7 +33,6 @@ - - import os, re, sys, string - import jsmin --import bz2 - - - def ToCAsciiArray(lines): -@@ -344,6 +343,7 @@ - else: - raw_sources_declaration = RAW_SOURCES_COMPRESSION_DECLARATION - if env['COMPRESSION'] == 'bz2': -+ import bz2 - all_sources = bz2.compress("".join(all_sources)) - total_length = len(all_sources) - sources_data = ToCArray(all_sources) |