summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2022-03-07 19:42:33 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-08 09:42:59 +0000
commitfdaf5e0027a52e44f2def0ef240134763660aa00 (patch)
treefb469450c65942c1faae70b478bc8a59d899d147 /meta/classes
parentcb56166eef34ba4937dc487664c57815daeadbe8 (diff)
downloadopenembedded-core-contrib-fdaf5e0027a52e44f2def0ef240134763660aa00.tar.gz
pip_install_wheel: don't lazy assign PIPINSTALLARGS
If we expect users to extend this we should use =, as otherwise a recipe that does += will replace the default value. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/pip_install_wheel.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/pip_install_wheel.bbclass b/meta/classes/pip_install_wheel.bbclass
index c1680a24ed..febcc8e445 100644
--- a/meta/classes/pip_install_wheel.bbclass
+++ b/meta/classes/pip_install_wheel.bbclass
@@ -10,7 +10,7 @@ PIP_INSTALL_PACKAGE ?= "${@guess_pip_install_package_name(d)}"
PIP_INSTALL_DIST_PATH ?= "${@d.getVar('SETUPTOOLS_SETUP_PATH') or d.getVar('B')}/dist"
PYPA_WHEEL ??= "${PIP_INSTALL_DIST_PATH}/${PIP_INSTALL_PACKAGE}-*-*.whl"
-PIP_INSTALL_ARGS ?= "\
+PIP_INSTALL_ARGS = "\
-vvvv \
--ignore-installed \
--no-cache \