mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
classes/npm: force to rebuild the prebuild addons
This commit forces to rebuild the prebuild addons which are using node-gyp-build. https://www.npmjs.com/package/node-gyp-build (From OE-Core rev: dc4dda4d459ef66246cb7fb6f7d667c982707544) Signed-off-by: Jean-Marie LEMETAYER <jean-marie.lemetayer@savoirfairelinux.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
fc516a65b3
commit
4662963b2c
@@ -216,6 +216,7 @@ python npm_do_compile() {
|
|||||||
dev = bb.utils.to_boolean(d.getVar("NPM_INSTALL_DEV"), False)
|
dev = bb.utils.to_boolean(d.getVar("NPM_INSTALL_DEV"), False)
|
||||||
|
|
||||||
with tempfile.TemporaryDirectory() as tmpdir:
|
with tempfile.TemporaryDirectory() as tmpdir:
|
||||||
|
args = []
|
||||||
configs = []
|
configs = []
|
||||||
|
|
||||||
if dev:
|
if dev:
|
||||||
@@ -240,9 +241,13 @@ python npm_do_compile() {
|
|||||||
pythondir = os.path.join(bindir, "python-native", "python")
|
pythondir = os.path.join(bindir, "python-native", "python")
|
||||||
configs.append(("python", pythondir))
|
configs.append(("python", pythondir))
|
||||||
|
|
||||||
|
# Add node-pre-gyp configuration
|
||||||
|
args.append(("target_arch", d.getVar("NPM_ARCH")))
|
||||||
|
args.append(("build-from-source", "true"))
|
||||||
|
|
||||||
# Pack and install the main package
|
# Pack and install the main package
|
||||||
tarball = npm_pack(env, d.getVar("NPM_PACKAGE"), tmpdir)
|
tarball = npm_pack(env, d.getVar("NPM_PACKAGE"), tmpdir)
|
||||||
env.run("npm install %s" % shlex.quote(tarball), configs=configs)
|
env.run("npm install %s" % shlex.quote(tarball), args=args, configs=configs)
|
||||||
}
|
}
|
||||||
|
|
||||||
npm_do_install() {
|
npm_do_install() {
|
||||||
|
|||||||
Reference in New Issue
Block a user