From ef50494430f825ea9b276b29855b94e03b3c7b6d Mon Sep 17 00:00:00 2001 From: Mikhail Novosyolov Date: Fri, 10 Feb 2023 22:35:43 +0300 Subject: [PATCH] Clean up base chroot dnf from host is used, it us not needed in the base chroot. Having dnf here makes bootstraping new versions of python3 harder. magic-devel, dwz etc. must be pulled from basesystem-build, no idea why they are here. --- config_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_generator.py b/config_generator.py index 6fab419..f99068a 100755 --- a/config_generator.py +++ b/config_generator.py @@ -79,7 +79,7 @@ def generate_config(): print_conf("config_opts['legal_host_arches'] = ('i586', 'i686', 'x86_64')") print_conf("config_opts['root'] = '%s-%s'" % (platform_name, platform_arch)) - print_conf("config_opts['chroot_setup_cmd'] = ('install', 'basesystem-build', 'dwz', 'dnf', 'magic-devel')") + print_conf("config_opts['chroot_setup_cmd'] = ('install', 'basesystem-build')") print_conf("config_opts['package_manager'] = 'dnf'") if platform_arch != 'e2kv4': if os.getenv('PACKAGE') and os.getenv('PACKAGE')[:4] == 'qt5-':