From c781a48097ac36417ab5e386841d16899880619a 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/37954 Reviewed-By: Michaƫl Zasso Reviewed-By: Richard Lau Reviewed-By: James M Snell Reviewed-By: Yagiz Nizipli --- configure.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.py b/configure.py index 3ddbbebd3f7f20..b1fc5513e7349e 100755 --- a/configure.py +++ b/configure.py @@ -577,7 +577,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', @@ -1934,7 +1934,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