remove i686 check from setup

This commit is contained in:
Tobias Powalowski 2017-11-27 09:29:13 +01:00
parent cbce9b3226
commit f143d2925a

View file

@ -2777,7 +2777,7 @@ select_packages() {
if [[ "${SELECTALL}" = "yes" ]]; then if [[ "${SELECTALL}" = "yes" ]]; then
tag="ON" tag="ON"
fi fi
for i in $(grep "${category}/" ${PKGS} | sed -e 's|^[a-z0-9-]*/||g' -e "s|pkg.tar.*$||g" -e 's/-i686\.//g' -e 's/-x86_64\.//g' -e 's/-any\.//g'); do for i in $(grep "${category}/" ${PKGS} | sed -e 's|^[a-z0-9-]*/||g' -e "s|pkg.tar.*$||g" -e 's/-x86_64\.//g' -e 's/-any\.//g'); do
pkgname=${i%-*-*} pkgname=${i%-*-*}
pkgdesc $pkgname pkgdesc $pkgname
CHKLIST+=("${pkgname}" "(${category})" ${tag} "${PKGDESC}") CHKLIST+=("${pkgname}" "(${category})" ${tag} "${PKGDESC}")
@ -3356,12 +3356,6 @@ do_uefi_setup_env_vars() {
fi fi
fi fi
if [[ "$(uname -m)" == "i686" ]]; then
export _EFI_MIXED="0"
export _UEFI_ARCH="IA32"
export _SPEC_UEFI_ARCH="ia32"
fi
} }
do_uefi_common() { do_uefi_common() {