git » libserialport.git » commit b9617e0

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 b7caf68e99ccdca89ac24fe801b6df9e9d3ef514

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 ee1c514..c44aa3b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@ pkgname=libserialport
 pkgver=0.1.1
 pkgrel=2
 pkgdesc='A minimal, cross-platform shared library for sigrok, intended to take care of the OS-specific details when writing software that uses serial ports'
-arch=(i686 x86_64)
+arch=(x86_64)
 url='http://sigrok.org/wiki/Libserialport'
 license=(GPL3)
 depends=(glibc)