This commit is contained in:
Andrei Yankovich 2019-09-06 18:45:10 +03:00 committed by GitHub
parent 1cd3537644
commit 90990f0b74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ def getArrayQtParams(text):
array = text.split('\n')
res = []
excludePlugins = ['freetype'];
excludePlugins = ['freetype', 'xcb'];
for item in array:
index = item.find('/qt')
@ -158,7 +158,7 @@ def getTargetDir(configureOptions, branch, platform):
@util.renderer
def getLinuxConfigOptions(props):
list = ['-fontconfig'];
list = ['-fontconfig', '-qt-xcb' ];
list += getGeneralConfigureOptions(props);
list += getTargetDir(list, props.getProperty('branch'), "Linux");