Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/
Date: Sat, 28 Mar 2020 20:07:10
Message-Id: 1585380891.671ba2f22c9ac335c5f24d69d75b75a1050f543d.mattst88@gentoo
1 commit: 671ba2f22c9ac335c5f24d69d75b75a1050f543d
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 00:52:57 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 07:34:51 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=671ba2f2
7
8 catalyst: Trim annoying warning
9
10 > WARNING : You have been warned.
11
12 is awfully silly.
13
14 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
15
16 catalyst/base/stagebase.py | 7 ++-----
17 1 file changed, 2 insertions(+), 5 deletions(-)
18
19 diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
20 index d2b4cd94..0a825700 100644
21 --- a/catalyst/base/stagebase.py
22 +++ b/catalyst/base/stagebase.py
23 @@ -1068,11 +1068,8 @@ class StageBase(TargetBase, ClearBase, GenBase):
24 print_traceback=True)
25
26 log.warning(
27 - 'Overriding certain env variables may cause catastrophic failure.\n'
28 - 'If your build fails look here first as the possible problem.\n'
29 - 'Catalyst assumes you know what you are doing when setting these variables.\n'
30 - 'Catalyst Maintainers use VERY minimal envscripts, if used at all.\n'
31 - 'You have been warned.')
32 + 'env variables in catalystrc may cause catastrophic failure.\n'
33 + 'If your build fails look here first as the possible problem.')
34
35 shutil.copy(self.settings['envscript'],
36 self.settings['chroot_path'] + '/tmp/envscript')