summaryrefslogtreecommitdiffstats
path: root/meta-boot2qt-distro/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2018-11-20 13:43:51 +0200
committerSamuli Piippo <samuli.piippo@qt.io>2018-11-21 11:43:18 +0000
commitc5a5bce25764de55420664b6896fd76ba5d18f45 (patch)
tree37946f9fcb4cf9dc9f09e0f693cb2b95a1c1f775 /meta-boot2qt-distro/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb
parent41105c273d58293be70f23d8e0ac24f41042d3f0 (diff)
downloadmeta-boot2qt-c5a5bce25764de55420664b6896fd76ba5d18f45.tar.gz
Remove default expansion parameter from getVarv5.12.0-rc
getVar defaults to expanding the variable, the second True parameter is unnecessary. Change-Id: Iafaf179c67ffedaba2946c078c1810a80198cf5e Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
Diffstat (limited to 'meta-boot2qt-distro/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb')
-rw-r--r--meta-boot2qt-distro/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-boot2qt-distro/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb b/meta-boot2qt-distro/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb
index f115070..fe2ab16 100644
--- a/meta-boot2qt-distro/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb
+++ b/meta-boot2qt-distro/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb
@@ -38,11 +38,11 @@ S = "${WORKDIR}"
38 38
39inherit qbsp 39inherit qbsp
40 40
41PV := "${@d.getVar('PV', True).split('+')[0]}" 41PV := "${@d.getVar('PV').split('+')[0]}"
42 42
43VERSION_SHORT = "${@d.getVar('PV', True).replace('.','')}" 43VERSION_SHORT = "${@d.getVar('PV').replace('.','')}"
44QBSP_NAME = "Automotive ${PV}" 44QBSP_NAME = "Automotive ${PV}"
45QBSP_MACHINE = "${@d.getVar('MACHINE', True).replace('-','')}" 45QBSP_MACHINE = "${@d.getVar('MACHINE').replace('-','')}"
46QBSP_INSTALLER_COMPONENT = "automotive.${VERSION_SHORT}.yocto.${QBSP_MACHINE}" 46QBSP_INSTALLER_COMPONENT = "automotive.${VERSION_SHORT}.yocto.${QBSP_MACHINE}"
47QBSP_INSTALL_PATH = "/${PV}/Automotive/${MACHINE}" 47QBSP_INSTALL_PATH = "/${PV}/Automotive/${MACHINE}"
48 48