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:44:27 +0000
commit3046042ea4bb83fe82557a4d11611328ac1bce1f (patch)
treededc853ae6699ceb69416a1e59803cd1d180f832 /meta/classes
parentc38a95d4f59ee68cdb4929ac50ef311085846995 (diff)
downloadpoky-3046042ea4bb83fe82557a4d11611328ac1bce1f.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. (From OE-Core rev: fdaf5e0027a52e44f2def0ef240134763660aa00) 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)}"
10PIP_INSTALL_DIST_PATH ?= "${@d.getVar('SETUPTOOLS_SETUP_PATH') or d.getVar('B')}/dist" 10PIP_INSTALL_DIST_PATH ?= "${@d.getVar('SETUPTOOLS_SETUP_PATH') or d.getVar('B')}/dist"
11PYPA_WHEEL ??= "${PIP_INSTALL_DIST_PATH}/${PIP_INSTALL_PACKAGE}-*-*.whl" 11PYPA_WHEEL ??= "${PIP_INSTALL_DIST_PATH}/${PIP_INSTALL_PACKAGE}-*-*.whl"
12 12
13PIP_INSTALL_ARGS ?= "\ 13PIP_INSTALL_ARGS = "\
14 -vvvv \ 14 -vvvv \
15 --ignore-installed \ 15 --ignore-installed \
16 --no-cache \ 16 --no-cache \