Skip to content

Commit c082277

Browse files
committed
build: do not disable inspector when intl is disabled
1 parent cf73f5c commit c082277

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

configure.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@
552552
action='store_const',
553553
dest='with_intl',
554554
const='none',
555-
help='Disable Intl, same as --with-intl=none (disables inspector)')
555+
help='Disable Intl, same as --with-intl=none')
556556

557557
intl_optgroup.add_argument('--with-icu-path',
558558
action='store',
@@ -1861,7 +1861,6 @@ def icu_download(path):
18611861

18621862
def configure_inspector(o):
18631863
disable_inspector = (options.without_inspector or
1864-
options.with_intl in (None, 'none') or
18651864
options.without_ssl)
18661865
o['variables']['v8_enable_inspector'] = 0 if disable_inspector else 1
18671866

0 commit comments

Comments
 (0)