Treat all i?86 archs as i386.

This commit is contained in:
Vít Ondruch 2023-01-06 16:49:00 +01:00 committed by mschorm
parent e2c66c6d03
commit a25e86c632

View File

@ -47,6 +47,10 @@ fix_arch ()
ppc64p7)
eval "$1=ppc64"
;;
# Related to rhbz#2158752.
i?86)
eval "$1=i386"
;;
esac
}