Skip to content
Snippets Groups Projects
Commit 77611913 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

qt: only pass -qt-xcb on non-OS X

parent 112122bc
No related branches found
No related tags found
No related merge requests found
......@@ -237,12 +237,18 @@ def configure(self):
@when('@5.7:')
def configure(self):
args = self.common_config_args
if not sys.platform == 'darwin':
args.extend([
'-qt-xcb',
])
configure('-no-eglfs',
'-no-directfb',
'-qt-xcb',
'{0}-gtk'.format('' if '+gtk' in self.spec else '-no'),
'-skip', 'webengine',
*self.common_config_args)
*args)
def install(self, spec, prefix):
self.configure()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment