blob: f91df4d5708dc32cbd00303b86e8c1494c134430 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require qt5-git.inc
require ${PN}.inc
# qtwayland wasn't released yet, last tag before this SRCREV is 5.0.0-beta1
PV = "4.999+5.0.0-beta1+git${SRCPV}"
PR = "${INC_PR}.1"
SRCREV = "5cb159395eccb1d96fb73a78e499eef30aacb46d"
do_configure_prepend() {
# Temporary hack to get qtwayland build for Qt 5.0.2
if ! grep -q MODULE_VERSION ${S}/.qmake.conf; then
echo "MODULE_VERSION = 0.0.0" >> ${S}/.qmake.conf
fi
}
|