From: Stefan Herbrechtsmeier Date: Wed, 20 Oct 2021 07:40:15 +0000 (+0200) Subject: npm: Remove unnecessary configs argument from npm run command X-Git-Tag: uninative-3.5~1104 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e5031366ff3519814aff8b95c524659a398e62c1;p=openembedded-core.git npm: Remove unnecessary configs argument from npm run command Signed-off-by: Stefan Herbrechtsmeier Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/meta/classes/npm.bbclass b/meta/classes/npm.bbclass index 547c531883..ba50fcac20 100644 --- a/meta/classes/npm.bbclass +++ b/meta/classes/npm.bbclass @@ -259,7 +259,7 @@ python npm_do_compile() { # Pack and install the main package tarball = npm_pack(env, d.getVar("NPM_PACKAGE"), tmpdir) cmd = "npm install %s %s" % (shlex.quote(tarball), d.getVar("EXTRA_OENPM")) - env.run(cmd, args=args, configs=configs) + env.run(cmd, args=args) } npm_do_install() {