From adb50cf4aa19d2a79e96a6447efd75f49946c35e Mon Sep 17 00:00:00 2001 From: Nikita Dubrovskii Date: Wed, 30 Oct 2024 10:49:27 +0100 Subject: [PATCH] dnf5 builddep: drop '--spec' as it no longer exists --- ci/buildroot/install-buildroot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/buildroot/install-buildroot.sh b/ci/buildroot/install-buildroot.sh index 8c7be2579c..52590dfbe5 100755 --- a/ci/buildroot/install-buildroot.sh +++ b/ci/buildroot/install-buildroot.sh @@ -35,7 +35,7 @@ rm -rf "${tmpd:?}"/* echo "Installing build dependencies from canonical spec files" specs=$(grep -v '^#' "${dn}"/buildroot-specs.txt) (cd "${tmpd}" && echo "${specs}" | xargs curl -L --remote-name-all) -(cd "${tmpd}" && find . -type f -print0 | xargs -0 dnf -y builddep --spec) +(cd "${tmpd}" && find . -type f -print0 | xargs -0 dnf -y builddep) rm -rf "${tmpd:?}"/* echo "Installing test dependencies from canonical upstream files"