On 1/5/21 3:20 AM, Joelle van Dyne wrote: > Signed-off-by: Joelle van Dyne <j...@getutm.app> > --- > configure | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/configure b/configure > index 09dd22ebad..79dc9811e8 100755 > --- a/configure > +++ b/configure > @@ -7033,9 +7033,12 @@ if test "$cross_compile" = "yes"; then > echo "system = 'darwin'" >> $cross > fi > case "$ARCH" in > - i386|x86_64) > + i386) > echo "cpu_family = 'x86'" >> $cross > ;; > + x86_64) > + echo "cpu_family = 'x86_64'" >> $cross > + ;; > ppc64le) > echo "cpu_family = 'ppc64'" >> $cross > ;; >
Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com>