From f56b1e9f93f6e1fff9bc42c4c37828447b4426eb Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Fri, 5 Jan 2024 19:20:57 -0800 Subject: [PATCH] build_utils.sh: try using dnf, adding -d 10 --debugsolver for more info Signed-off-by: Dan Mick --- scripts/build_utils.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index 9fd27032..da0bf827 100755 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -1488,9 +1488,9 @@ setup_rpm_build_deps() { # Make sure we have all the rpm macros installed and at the latest version # before installing the dependencies, python3-devel requires the # python-rpm-macro we use for identifying the python related dependencies - $SUDO yum install -y python3-devel + $SUDO dnf install -y python3-devel - $SUDO yum-builddep -v -y --setopt=*.skip_if_unavailable=true $DIR/ceph.spec + $SUDO dnf builddep -d 10 --debugsolver -y --setopt=*.skip_if_unavailable=true $DIR/ceph.spec } setup_rpm_build_area() { -- 2.39.5