1
0
mirror of https://github.com/coreos/fedora-coreos-config.git synced 2026-02-05 09:45:30 +01:00

dnf5 builddep: drop '--spec' as it no longer exists

This commit is contained in:
Nikita Dubrovskii
2024-10-30 10:49:27 +01:00
committed by Dusty Mabe
parent 206ec81597
commit 7ef7e40440

View File

@@ -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"