summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorStefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>2021-10-20 09:40:15 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-23 17:42:28 +0100
commit700202afb1d435bac9ed096e1786bf1bee05b649 (patch)
tree1f8f2805e8d10f3ab6b9ce45f1ae01ddceb259a4 /meta/classes
parent7ab5afa819b364b5f0ec89848c452eefa95d2201 (diff)
downloadpoky-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')
-rw-r--r--meta/classes/npm.bbclass2
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
265npm_do_install() { 265npm_do_install() {