You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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".
The text was updated successfully, but these errors were encountered: