From 1d53d2994f1c598cf965b6a09a631d510b1a20d0 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Tue, 16 Mar 2021 21:38:32 +0100 Subject: [PATCH] conf/05-system-external-commands.conf: call dnf with --skip-broken to at least install available build requirements (fixes autoport) --- conf/05-system-external-commands.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/05-system-external-commands.conf b/conf/05-system-external-commands.conf index 9cc5113..416aba6 100644 --- a/conf/05-system-external-commands.conf +++ b/conf/05-system-external-commands.conf @@ -23,7 +23,7 @@ proxy_user="" # smart: rpm_download_and_install="sudo smart install --yes" # yum : rpm_download_and_install="sudo yum install -y --nogpgcheck" # dnf : rpm_download_and_install="sudo dnf install -y" -rpm_download_and_install="sudo dnf install -y" +rpm_download_and_install="sudo dnf install --skip-broken -y" rpm_install="sudo rpm -hUv" rpm_install_force="sudo rpm -hUv --force --nodeps"