From 01b54d240624e56b3e5415b6cf56a7fc3c987f24 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Mon, 23 Jan 2017 14:05:25 -0300 Subject: [configs/releng] Do not build i686 Only avoid build i686. The syslinux config files for i686 are still present. This implies that a i686 entry will be present but not working. In another patch, this can be removed if desired. Signed-off-by: Gerardo Exequiel Pozzi --- configs/releng/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/releng/build.sh b/configs/releng/build.sh index c208a15..71b6346 100755 --- a/configs/releng/build.sh +++ b/configs/releng/build.sh @@ -249,19 +249,19 @@ mkdir -p ${work_dir} run_once make_pacman_conf # Do all stuff for each airootfs -for arch in i686 x86_64; do +for arch in x86_64; do run_once make_basefs run_once make_packages done run_once make_packages_efi -for arch in i686 x86_64; do +for arch in x86_64; do run_once make_setup_mkinitcpio run_once make_customize_airootfs done -for arch in i686 x86_64; do +for arch in x86_64; do run_once make_boot done @@ -272,7 +272,7 @@ run_once make_isolinux run_once make_efi run_once make_efiboot -for arch in i686 x86_64; do +for arch in x86_64; do run_once make_prepare done -- cgit v1.2.3-54-g00ecf