Gentoo Archives: gentoo-commits

From: Thomas Sachau <tommy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:multilib commit in: lib/_emerge/
Date: Fri, 30 Oct 2020 10:54:29
Message-Id: 1604055241.06ad89f7678ba2284636a30db1e27f41450ea1e3.tommy@gentoo
1 commit: 06ad89f7678ba2284636a30db1e27f41450ea1e3
2 Author: Thomas Sachau <tommy <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 30 10:54:01 2020 +0000
4 Commit: Thomas Sachau <tommy <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 30 10:54:01 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=06ad89f7
7
8 Fix warning
9
10 Signed-off-by: Thomas Sachau <tommy <AT> gentoo.org>
11
12 lib/_emerge/actions.py | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/lib/_emerge/actions.py b/lib/_emerge/actions.py
16 index 8fb07bbd8..0472cb951 100644
17 --- a/lib/_emerge/actions.py
18 +++ b/lib/_emerge/actions.py
19 @@ -2954,7 +2954,7 @@ def run_action(emerge_config):
20 apply_priorities(emerge_config.target_config.settings)
21
22 if 'force-multilib' in emerge_config.target_config.settings.features:
23 - if emerge_config.target_config.settings.get("NO_AUTO_FLAG", "") is "":
24 + if emerge_config.target_config.settings.get("NO_AUTO_FLAG", "") == "":
25 writemsg_level(bad("!!! Failed to find vars from extra profile") + "\n",level=logging.ERROR, noiselevel=-1)
26 writemsg_level(bad("!!! Please make sure that you did follow the instructions and included the extra profile\n"),level=logging.ERROR, noiselevel=-1)
27 writemsg_level(bad("!!! http://git.overlays.gentoo.org/gitweb/?p=proj/multilib-portage.git;a=blob;f=doc/portage-multilib-instructions\n"),level=logging.ERROR, noiselevel=-1)