Skip to content

Commit ff07aa7

Browse files
Trottdanielleadams
authored andcommittedApr 5, 2023
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 48cd712 commit ff07aa7

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
@@ -588,7 +588,7 @@
588588
action='store_const',
589589
dest='with_intl',
590590
const='none',
591-
help='Disable Intl, same as --with-intl=none (disables inspector)')
591+
help='Disable Intl, same as --with-intl=none')
592592

593593
intl_optgroup.add_argument('--with-icu-path',
594594
action='store',
@@ -1977,7 +1977,6 @@ def icu_download(path):
19771977

19781978
def configure_inspector(o):
19791979
disable_inspector = (options.without_inspector or
1980-
options.with_intl in (None, 'none') or
19811980
options.without_ssl)
19821981
o['variables']['v8_enable_inspector'] = 0 if disable_inspector else 1
19831982

0 commit comments

Comments
 (0)
Please sign in to comment.