diff options
author | Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> | 2021-10-20 09:40:15 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-23 17:42:28 +0100 |
commit | 700202afb1d435bac9ed096e1786bf1bee05b649 (patch) | |
tree | 1f8f2805e8d10f3ab6b9ce45f1ae01ddceb259a4 /meta/classes/npm.bbclass | |
parent | 7ab5afa819b364b5f0ec89848c452eefa95d2201 (diff) | |
download | poky-700202afb1d435bac9ed096e1786bf1bee05b649.tar.gz |
npm: Remove unnecessary configs argument from npm run command
(From OE-Core rev: e5031366ff3519814aff8b95c524659a398e62c1)
Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/npm.bbclass')
-rw-r--r-- | meta/classes/npm.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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() { | |||
259 | # Pack and install the main package | 259 | # Pack and install the main package |
260 | tarball = npm_pack(env, d.getVar("NPM_PACKAGE"), tmpdir) | 260 | tarball = npm_pack(env, d.getVar("NPM_PACKAGE"), tmpdir) |
261 | cmd = "npm install %s %s" % (shlex.quote(tarball), d.getVar("EXTRA_OENPM")) | 261 | cmd = "npm install %s %s" % (shlex.quote(tarball), d.getVar("EXTRA_OENPM")) |
262 | env.run(cmd, args=args, configs=configs) | 262 | env.run(cmd, args=args) |
263 | } | 263 | } |
264 | 264 | ||
265 | npm_do_install() { | 265 | npm_do_install() { |