Fix bundled xkbcommon build without xcb-xkb present

The condition went missing in the process of cleaning up.

Change-Id: If4f7958e5e5983c86f86a009aaa88d1f5e7ec76d
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
This commit is contained in:
Laszlo Agocs 2016-08-24 16:10:41 +02:00 committed by Frederik Gladhorn
parent 1cc571593a
commit 547d3f0ebe

View File

@ -88,7 +88,11 @@ qtConfig(dbus-linked): \
# libxkbcommon
!qtConfig(xkbcommon-system) {
include(../../../3rdparty/xkbcommon-x11.pri)
qtConfig(xkb) {
include(../../../3rdparty/xkbcommon-x11.pri)
} else {
include(../../../3rdparty/xkbcommon.pri)
}
} else {
QMAKE_USE += xkbcommon
}