git » openttd.git » commit 6e02e9b

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 881d40338c0a60f74f32f06e0417fbdb7a795156

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 7c8c5d6..5f9554d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@ pkgname=openttd
 pkgver=1.7.1
 pkgrel=2
 pkgdesc='An engine for running Transport Tycoon Deluxe.'
-arch=('i686' 'x86_64')
+arch=('x86_64')
 url='http://www.openttd.org'
 license=('GPL')
 depends=('libpng' 'sdl' 'icu' 'fontconfig' 'lzo' 'hicolor-icon-theme' 'desktop-file-utils' 'xz')