Skip to content

Commit c781a48

Browse files
TrottMylesBorins
authored andcommitted
build: do not disable inspector when intl is disabled
PR-URL: #37954 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
1 parent ddf5002 commit c781a48

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

configure.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@
577577
action='store_const',
578578
dest='with_intl',
579579
const='none',
580-
help='Disable Intl, same as --with-intl=none (disables inspector)')
580+
help='Disable Intl, same as --with-intl=none')
581581

582582
intl_optgroup.add_argument('--with-icu-path',
583583
action='store',
@@ -1934,7 +1934,6 @@ def icu_download(path):
19341934

19351935
def configure_inspector(o):
19361936
disable_inspector = (options.without_inspector or
1937-
options.with_intl in (None, 'none') or
19381937
options.without_ssl)
19391938
o['variables']['v8_enable_inspector'] = 0 if disable_inspector else 1
19401939

0 commit comments

Comments
 (0)