qt4: fix 'arch' string due to microarchitecture change (#12957)
qt4 fails to build because it's expecting something like 'x86_64' rather than 'broadwell'.
This commit is contained in:
parent
7dae058f91
commit
5201d2615e
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ def configure(self, spec, prefix):
|
|||
'-{0}gtkstyle'.format('' if '+gtk' in spec else 'no-'),
|
||||
'-{0}webkit'.format('' if '+webkit' in spec else 'no-'),
|
||||
'-{0}phonon'.format('' if '+phonon' in spec else 'no-'),
|
||||
'-arch', str(spec.architecture.target),
|
||||
'-arch', str(spec.target.family),
|
||||
])
|
||||
|
||||
# Disable phonon backend until gstreamer is setup as dependency
|
||||
|
|
Loading…
Reference in a new issue