Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

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: #262
Reviewed-By: Kunal Pathak <kunal.pathak@microsoft.com>
  • Loading branch information
kfarnung committed May 25, 2017
1 parent 2c293b3 commit 4da26c0
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 @@ -1307,6 +1307,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 4da26c0

Please sign in to comment.