Skip to content

Commit

Permalink
dnf5 builddep: drop '--spec' as it no longer exists
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-dubrovskii committed Oct 30, 2024
1 parent d4da886 commit adb50cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/buildroot/install-buildroot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit adb50cf

Please sign in to comment.