commit: 671ba2f22c9ac335c5f24d69d75b75a1050f543d
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 28 00:52:57 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Mar 28 07:34:51 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=671ba2f2
catalyst: Trim annoying warning
> WARNING : You have been warned.
is awfully silly.
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/base/stagebase.py | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index d2b4cd94..0a825700 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -1068,11 +1068,8 @@ class StageBase(TargetBase, ClearBase, GenBase):
print_traceback=True)
log.warning(
- 'Overriding certain env variables may
cause catastrophic failure.\n'
- 'If your build fails look here first as
the possible problem.\n'
- 'Catalyst assumes you know what you are
doing when setting these variables.\n'
- 'Catalyst Maintainers use VERY minimal
envscripts, if used at all.\n'
- 'You have been warned.')
+ 'env variables in catalystrc may cause
catastrophic failure.\n'
+ 'If your build fails look here first as
the possible problem.')
shutil.copy(self.settings['envscript'],
self.settings['chroot_path'] +
'/tmp/envscript')