Skip to content

Commit 65c9cb1

Browse files
committed
build: do not disable inspector when intl is disabled
1 parent a8a8638 commit 65c9cb1

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
@@ -551,7 +551,7 @@
551551
action='store_const',
552552
dest='with_intl',
553553
const='none',
554-
help='Disable Intl, same as --with-intl=none (disables inspector)')
554+
help='Disable Intl, same as --with-intl=none')
555555

556556
intl_optgroup.add_argument('--with-icu-path',
557557
action='store',
@@ -1815,7 +1815,6 @@ def icu_download(path):
18151815

18161816
def configure_inspector(o):
18171817
disable_inspector = (options.without_inspector or
1818-
options.with_intl in (None, 'none') or
18191818
options.without_ssl)
18201819
o['variables']['v8_enable_inspector'] = 0 if disable_inspector else 1
18211820

0 commit comments

Comments
 (0)