git » uboot-tools.git » commit 03f33c8

Remove i686 from arch=()

author Evangelos Foutras
2017-11-15 14:29:11 UTC
committer Evangelos Foutras
2017-11-15 14:29:11 UTC
parent 032aba0bd0f145a6056b03855a66b1b3a34703fd

Remove i686 from arch=()

FTR, commands used to change arch=() and then verify the changes:

$ sed -Ei "/^arch=/{s/ *?['\"]?i686['\"]? *?//;s/ *$//}" */*/PKGBUILD*

$ grep -r i686 * | grep arch= | grep -v repos

$ svn diff | grep -A 1 ^-[^-] | grep -v -- -- | cut -c2- |
  while IFS=$'\n' read -r l1; IFS=$'\n' read -r l2; do
    echo "$l1 -> $l2"
  done | sort -u

PKGBUILD +1 -1

diff --git a/PKGBUILD b/PKGBUILD
index 1c4b305..1544706 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@ pkgname=uboot-tools
 pkgver=2017.07
 pkgrel=1
 pkgdesc='U-Boot bootloader utility tools'
-arch=(i686 x86_64)
+arch=(x86_64)
 url='http://www.denx.de/wiki/U-Boot/WebHome'
 license=(GPL)
 depends=(openssl)