diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2018-01-17 15:32:46 +0100 |
---|---|---|
committer | Ruben Bridgewater <ruben@bridgewater.de> | 2018-01-19 13:00:40 +0100 |
commit | fe94394b99a39a4ed2c0589f825b6e4958fed629 (patch) | |
tree | 12751261d06fd034fb795d12c8f6036160aa0d4c /configure | |
parent | 45307fde5c82488d1a12c1eeee24714d49745706 (diff) | |
download | node-new-fe94394b99a39a4ed2c0589f825b6e4958fed629.tar.gz |
build: remove unused vars from configure
PR-URL: https://github.com/nodejs/node/pull/18206
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jon Moss <me@jonathanmoss.me>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -899,8 +899,6 @@ def configure_node(o): if options.systemtap_includes: o['include_dirs'] += [options.systemtap_includes] o['variables']['node_use_dtrace'] = b(use_dtrace) - o['variables']['uv_use_dtrace'] = b(use_dtrace) - o['variables']['uv_parent_path'] = '/deps/uv/' elif options.with_dtrace: raise Exception( 'DTrace is currently only supported on SunOS, MacOS or Linux systems.') @@ -977,7 +975,6 @@ def configure_node(o): o['variables']['library_files'] = options.linked_module o['variables']['asan'] = int(options.enable_asan or 0) - o['variables']['debug_devtools'] = 'node' if options.use_xcode and options.use_ninja: raise Exception('--xcode and --ninja cannot be used together.') @@ -1356,8 +1353,6 @@ def configure_intl(o): # this is the input '.dat' file to use .. icudt*.dat # may be little-endian if from a icu-project.org tarball o['variables']['icu_data_in'] = icu_data_in - # this is the icudt*.dat file which node will be using (platform endianness) - o['variables']['icu_data_file'] = icu_data_file if not os.path.isfile(icu_data_path): print('Error: ICU prebuilt data file %s does not exist.' % icu_data_path) print('See the README.md.') |