From bacc1323b629ed150172e61eeba1eac55b37d51d Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Mon, 8 Jan 2024 14:39:58 -0800 Subject: [PATCH] build_utils.sh Add "dnf clean all" as a Big Hammer There's no reason this should be necessary, but maybe it works around the mysterious issue of "Problem: cannot install both python3-devel-3.9.18-1.el9.x86_64 from appstream and python3-devel-3.9.18-1.el9.x86_64 from @System" Signed-off-by: Dan Mick --- scripts/build_utils.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index da0bf827..d28458c7 100755 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -1490,6 +1490,7 @@ setup_rpm_build_deps() { # python-rpm-macro we use for identifying the python related dependencies $SUDO dnf install -y python3-devel + $SUDO dnf clean all $SUDO dnf builddep -d 10 --debugsolver -y --setopt=*.skip_if_unavailable=true $DIR/ceph.spec } -- 2.39.5