From: Ben Crocker <bcrocker@xxxxxxxxxx> Use test -x instead of dnf to test for presence of bats. Signed-off-by: Ben Crocker <bcrocker@xxxxxxxxxx> --- redhat/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redhat/Makefile b/redhat/Makefile index 555dea25ea0f..e7ba07066177 100644 --- a/redhat/Makefile +++ b/redhat/Makefile @@ -393,7 +393,7 @@ dist-dump-variables: @$(REDHAT)/dist-dump-variables.sh dist-self-test: - @if dnf list installed bats >& /dev/null; then \ + @if test -x /usr/bin/bats >& /dev/null; then \ bats $(REDHAT)/self-test/*.bats ; \ else \ echo "dist-self-test: The bats package is not installed" ; \ -- GitLab _______________________________________________ kernel mailing list -- kernel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to kernel-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/kernel@xxxxxxxxxxxxxxxxxxxxxxx