From a065083bd5cd16e7f0116aec32766d1351933cf2 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 3ddbbebd3f7..b1fc5513e73 100755 --- a/configure.py +++ b/configure.py @@ -577,7 +577,7 @@ intl_optgroup.add_argument('--without-intl', 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 configure_intl(o): 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