commit: 50232e5d8c153e5500c97be29d6347f960e01760 Author: kewl fft <kewl <AT> alto <DOT> eu <DOT> org> AuthorDate: Wed Aug 1 20:05:48 2018 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Wed Aug 1 20:50:20 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=50232e5d
etc-update: add arch32 to arch OS_FAMILY (for the 32-bit users) Closes: https://github.com/gentoo/portage/pull/349 bin/etc-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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
