Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/
Date: Thu, 26 Apr 2018 09:06:06
Message-Id: 1524733523.3029b90aac32fa82a3f87a8bcb1bc3658b589774.zmedico@gentoo
1 commit: 3029b90aac32fa82a3f87a8bcb1bc3658b589774
2 Author: Tomáš Chvátal <tomas.chvatal <AT> gmail <DOT> com>
3 AuthorDate: Thu Apr 26 09:03:47 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 26 09:05:23 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=3029b90a
7
8 etc-update: include opensuse-leap in suse OS_FAMILY
9
10 bin/etc-update | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/bin/etc-update b/bin/etc-update
14 index 23903a105..b15cceb4c 100755
15 --- a/bin/etc-update
16 +++ b/bin/etc-update
17 @@ -35,7 +35,7 @@ get_config() {
18 OS_RELEASE_ID=$(cat /etc/os-release 2>/dev/null | grep '^ID=' | cut -d'=' -f2 | sed -e 's/"//g')
19
20 case $OS_RELEASE_ID in
21 - suse|opensuse) OS_FAMILY='suse' NEW_EXT='rpmnew';;
22 + suse|opensuse|opensuse-leap) OS_FAMILY='suse' NEW_EXT='rpmnew';;
23 arch|manjaro|antergos) OS_FAMILY='arch' NEW_EXT='pacnew';;
24 *) OS_FAMILY='gentoo' ;;
25 esac