diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2018-01-02 23:38:04 -0500 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-09-13 09:21:45 +0200 |
commit | ef53e039e0b2275144d1142a4b9de08282b014a2 (patch) | |
tree | a7179771b6b160ee194efd5268785adc43b4c1f7 /lib | |
parent | e9cf43913af4a58b126b378518049dee98eb4e7f (diff) | |
download | devtools32-ef53e039e0b2275144d1142a4b9de08282b014a2.tar.xz |
Revert "Remove i686 support"
This reverts commit 7259e7def07a5f6ee04a34db61a87361ad0b5ac7, except for commitpkg.in
Diffstat (limited to 'lib')
-rw-r--r-- | lib/valid-tags.sh | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/lib/valid-tags.sh b/lib/valid-tags.sh index 3cfe046..2916dc7 100644 --- a/lib/valid-tags.sh +++ b/lib/valid-tags.sh @@ -4,22 +4,23 @@ # shellcheck disable=2034 _arch=( + i686 x86_64 any ) # shellcheck disable=2034 _tags=( - core-x86_64 core-any - extra-x86_64 extra-any + core-i686 core-x86_64 core-any + extra-i686 extra-x86_64 extra-any multilib-x86_64 - staging-x86_64 staging-any - testing-x86_64 testing-any + staging-i686 staging-x86_64 staging-any + testing-i686 testing-x86_64 testing-any multilib-testing-x86_64 multilib-staging-x86_64 - community-x86_64 community-any - community-staging-x86_64 community-staging-any - community-testing-x86_64 community-testing-any - kde-unstable-x86_64 kde-unstable-any - gnome-unstable-x86_64 gnome-unstable-any + community-i686 community-x86_64 community-any + community-staging-i686 community-staging-x86_64 community-staging-any + community-testing-i686 community-testing-x86_64 community-testing-any + kde-unstable-i686 kde-unstable-x86_64 kde-unstable-any + gnome-unstable-i686 gnome-unstable-x86_64 gnome-unstable-any ) |