aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkewl fft <kewl@alto.eu.org>2018-08-01 21:05:48 +0100
committerZac Medico <zmedico@gentoo.org>2018-08-01 13:50:20 -0700
commit50232e5d8c153e5500c97be29d6347f960e01760 (patch)
tree8ab75e972bb7749542017ac493d0a5c86f9b1a26
parentgitignore: Ignore .tox (diff)
downloadportage-50232e5d.tar.gz
portage-50232e5d.tar.bz2
portage-50232e5d.zip
etc-update: add arch32 to arch OS_FAMILY (for the 32-bit users)
Closes: https://github.com/gentoo/portage/pull/349
-rwxr-xr-xbin/etc-update2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/etc-update b/bin/etc-update
index 850f6a21b..f0aaca1e6 100755
--- a/bin/etc-update
+++ b/bin/etc-update
@@ -37,7 +37,7 @@ OS_RELEASE_ID=$(cat /etc/os-release 2>/dev/null | grep '^ID=' | cut -d'=' -f2 |
case $OS_RELEASE_ID in
suse|opensuse|opensuse-leap|opensuse-tumbleweed) OS_FAMILY='rpm' ;;
fedora|rhel) OS_FAMILY='rpm' ;;
- arch|archarm|manjaro|antergos) OS_FAMILY='arch' NEW_EXT='pacnew';;
+ arch|archarm|arch32|manjaro|antergos) OS_FAMILY='arch' NEW_EXT='pacnew';;
*) OS_FAMILY='gentoo' ;;
esac