From c0822776b36879728833c6c4f3ebe6c04de5cb1c Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 29 Mar 2021 22:42:20 -0700 Subject: [PATCH] build: do not disable inspector when intl is disabled --- configure.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.py b/configure.py index 1bd24a4a8e35db..9ee1923c75b924 100755 --- a/configure.py +++ b/configure.py @@ -552,7 +552,7 @@ action='store_const', dest='with_intl', const='none', - help='Disable Intl, same as --with-intl=none (disables inspector)') + help='Disable Intl, same as --with-intl=none') intl_optgroup.add_argument('--with-icu-path', action='store', @@ -1861,7 +1861,6 @@ def icu_download(path): def configure_inspector(o): disable_inspector = (options.without_inspector or - options.with_intl in (None, 'none') or options.without_ssl) o['variables']['v8_enable_inspector'] = 0 if disable_inspector else 1