Qt@4.8.7: fix build issue due to +phonon variant, disable phonon backend (#12579)

* fix build issue that shows up with +phonon variant, disable phonon backend gstreamer until it is setup

* provide in code explanation
This commit is contained in:
Sinan 2019-08-29 10:24:17 -07:00 committed by Adam J. Stewart
parent c8b613d261
commit 55099d89c1

View file

@ -426,6 +426,10 @@ def configure(self, spec, prefix):
'-arch', str(spec.architecture.target),
])
# Disable phonon backend until gstreamer is setup as dependency
if '+phonon' in self.spec:
config_args.append('-no-phonon-backend')
if '~examples' in self.spec:
config_args.extend(['-nomake', 'demos'])