Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"v8-inspector" in PACKAGECONFIG is ignored by configure #80

Open
tinoue opened this issue Aug 3, 2017 · 0 comments
Open

"v8-inspector" in PACKAGECONFIG is ignored by configure #80

tinoue opened this issue Aug 3, 2017 · 0 comments

Comments

@tinoue
Copy link

tinoue commented Aug 3, 2017

Specifying "v8-inspector" in PACKAGECONFIG doesn't take effect.
In log.do_configure, there is a line "'v8_inspector': 'false',".

The reason is that the configure script turns the v8_inspector option to false
if with_intl=none (see below) - which is always set to "none" by "meta-nodejs/recipes-devtools/nodejs/nodejs_7.inc".

def configure_inspector(o):
  disable_inspector = (options.without_inspector or
                       options.with_intl in (None, 'none') or
                       options.without_ssl)
  o['variables']['v8_inspector'] = b(not disable_inspector)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant