summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Shachnev <mitya57@gmail.com>2017-06-30 23:16:43 +0300
committerDmitry Shachnev <mitya57@gmail.com>2017-07-03 13:33:30 +0000
commit5c144a72d5f9b376a0351e9dcf6f0a4c8cc91294 (patch)
tree87adcc3bb1fd5c1aaee3731e2dbc6d1002c84743
parentdf06926b8a25316db5c21a82e68beb097999e7b2 (diff)
Fix capitalization of x11-xcb pkg-config module name
$ pkg-config --exists X11-xcb && echo True $ pkg-config --exists x11-xcb && echo True True See https://cgit.freedesktop.org/xorg/lib/libX11/tree/x11-xcb.pc.in. Change-Id: I1485f124e2926bb1c6a2b5eb83c4963c095d0f12 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
-rw-r--r--src/gui/configure.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/configure.json b/src/gui/configure.json
index ef7ba51c38..a51557e6cd 100644
--- a/src/gui/configure.json
+++ b/src/gui/configure.json
@@ -261,7 +261,7 @@
"label": "XCB Xlib",
"test": "qpa/xcb-xlib",
"sources": [
- { "type": "pkgConfig", "args": "X11-xcb x11 xcb" },
+ { "type": "pkgConfig", "args": "x11-xcb x11 xcb" },
"-lxcb -lX11 -lX11-xcb"
]
},