From fe94394b99a39a4ed2c0589f825b6e4958fed629 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 17 Jan 2018 15:32:46 +0100 Subject: [PATCH] build: remove unused vars from configure PR-URL: https://github.com/nodejs/node/pull/18206 Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: James M Snell Reviewed-By: Jon Moss Reviewed-By: Ruben Bridgewater --- configure | 5 ----- 1 file changed, 5 deletions(-) diff --git a/configure b/configure index 1029e92dfd59cf..db50ce0eedc863 100755 --- a/configure +++ b/configure @@ -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.')