meta-nodejs icon indicating copy to clipboard operation
meta-nodejs copied to clipboard

"v8-inspector" in PACKAGECONFIG is ignored by configure

Open tinoue opened this issue 8 years ago • 0 comments

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)

tinoue avatar Aug 03 '17 07:08 tinoue