diff options
author | Khem Raj <raj.khem@gmail.com> | 2020-03-30 20:47:26 -0700 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2020-03-31 11:59:27 +0100 |
commit | 12641489df3728da24ffce7b306081b8488c5246 (patch) | |
tree | e1f8b5fed8c54b9230e68cc3b24f1ff85fc43fb1 /dynamic-layers/qt5-layer | |
parent | b7d3f86687f91b41e6cd9d3e3d05fbaf733bdb73 (diff) | |
download | meta-raspberrypi-12641489df3728da24ffce7b306081b8488c5246.tar.gz |
qtbase: Append userland to rdeps iff vc4graphics is not enabled
This avoids adding unnessary dependency at runtime on userland graphics
package when vc4 driver is used
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'dynamic-layers/qt5-layer')
-rw-r--r-- | dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend b/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend index c43da01..8275c6d 100644 --- a/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend +++ b/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend | |||
@@ -15,5 +15,5 @@ do_configure_prepend_rpi() { | |||
15 | echo "EGLFS_DEVICE_INTEGRATION = ${OE_QTBASE_EGLFS_DEVICE_INTEGRATION}" >> ${S}/mkspecs/oe-device-extra.pri | 15 | echo "EGLFS_DEVICE_INTEGRATION = ${OE_QTBASE_EGLFS_DEVICE_INTEGRATION}" >> ${S}/mkspecs/oe-device-extra.pri |
16 | fi | 16 | fi |
17 | } | 17 | } |
18 | RDEPENDS_${PN}_append_rpi = " userland" | 18 | RDEPENDS_${PN}_append_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' userland', d)}" |
19 | DEPENDS_append_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' userland', d)}" | 19 | DEPENDS_append_rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' userland', d)}" |