Skip to content

Commit 9d0d526

Browse files
bnoordhuisevanlucas
authored andcommitted
build: remove unused vars from configure
PR-URL: #18206 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent c735c99 commit 9d0d526

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

configure

-5
Original file line numberDiff line numberDiff line change
@@ -899,8 +899,6 @@ def configure_node(o):
899899
if options.systemtap_includes:
900900
o['include_dirs'] += [options.systemtap_includes]
901901
o['variables']['node_use_dtrace'] = b(use_dtrace)
902-
o['variables']['uv_use_dtrace'] = b(use_dtrace)
903-
o['variables']['uv_parent_path'] = '/deps/uv/'
904902
elif options.with_dtrace:
905903
raise Exception(
906904
'DTrace is currently only supported on SunOS, MacOS or Linux systems.')
@@ -977,7 +975,6 @@ def configure_node(o):
977975
o['variables']['library_files'] = options.linked_module
978976

979977
o['variables']['asan'] = int(options.enable_asan or 0)
980-
o['variables']['debug_devtools'] = 'node'
981978

982979
if options.use_xcode and options.use_ninja:
983980
raise Exception('--xcode and --ninja cannot be used together.')
@@ -1352,8 +1349,6 @@ def configure_intl(o):
13521349
# this is the input '.dat' file to use .. icudt*.dat
13531350
# may be little-endian if from a icu-project.org tarball
13541351
o['variables']['icu_data_in'] = icu_data_in
1355-
# this is the icudt*.dat file which node will be using (platform endianness)
1356-
o['variables']['icu_data_file'] = icu_data_file
13571352
if not os.path.isfile(icu_data_path):
13581353
print('Error: ICU prebuilt data file %s does not exist.' % icu_data_path)
13591354
print('See the README.md.')

0 commit comments

Comments
 (0)