mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
3242f08e33
48c845902ac044af99ceb7cacc1ea3eacfaeb913 depends: fix qt determinism (Cory Fields) Pull request description: Backport for rc2 Tree-SHA512: 990a1b32ca8c80b22595c4b19e801d5033e42b7e86da0f80028e708131a136f6383d7510dab8bd7cd12fe8533f73246fe78c72a8a22a54eb136b2bfada1e67ea
27 lines
749 B
Diff
27 lines
749 B
Diff
--- old/qtbase/src/gui/configure.pri 2018-06-06 17:28:10.000000000 -0400
|
|
+++ new/qtbase/src/gui/configure.pri 2018-08-17 18:43:01.589384567 -0400
|
|
@@ -43,18 +43,11 @@
|
|
}
|
|
|
|
defineTest(qtConfTest_xkbConfigRoot) {
|
|
- qtConfTest_getPkgConfigVariable($${1}): return(true)
|
|
-
|
|
- for (dir, $$list("/usr/share/X11/xkb", "/usr/local/share/X11/xkb")) {
|
|
- exists($$dir) {
|
|
- $${1}.value = $$dir
|
|
- export($${1}.value)
|
|
- $${1}.cache += value
|
|
- export($${1}.cache)
|
|
- return(true)
|
|
- }
|
|
- }
|
|
- return(false)
|
|
+ $${1}.value = "/usr/share/X11/xkb"
|
|
+ export($${1}.value)
|
|
+ $${1}.cache += value
|
|
+ export($${1}.cache)
|
|
+ return(true)
|
|
}
|
|
|
|
defineTest(qtConfTest_qpaDefaultPlatform) {
|