copr: meh, I forgot to add it into yum conf

Hopefully, it will work now
This commit is contained in:
Jakub Kadlcik 2019-10-11 01:07:52 +02:00 committed by Pierre-Yves Chibon
parent e10da77da8
commit 711bc6ad71
3 changed files with 12 additions and 0 deletions

View file

@ -5,6 +5,10 @@ config_opts['root'] = 'epel-8-aarch64'
config_opts['target_arch'] = 'aarch64'
config_opts['legal_host_arches'] = ('aarch64',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['yum.conf'] += """
[main]
best=False
"""

View file

@ -5,6 +5,10 @@ config_opts['root'] = 'epel-8-ppc64le'
config_opts['target_arch'] = 'ppc64le'
config_opts['legal_host_arches'] = ('ppc64le',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['yum.conf'] += """
[main]
best=False
"""

View file

@ -5,6 +5,10 @@ config_opts['root'] = 'epel-8-x86_64'
config_opts['target_arch'] = 'x86_64'
config_opts['legal_host_arches'] = ('x86_64',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['yum.conf'] += """
[main]
best=False
"""