Skip to content

Commit

Permalink
build: restore intl check for inspector
Browse files Browse the repository at this point in the history
Upstream has a check that turns off inspector if intl is also turned
off. Restoring that check so that without-intl builds will succeed.

PR-URL: nodejs#262
Reviewed-By: Kunal Pathak <[email protected]>
  • Loading branch information
kfarnung committed May 31, 2017
1 parent 278ce06 commit 1a00505
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -1308,6 +1308,7 @@ 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

Expand Down

0 comments on commit 1a00505

Please sign in to comment.