This is an automated email from the git hooks/post-receive script.
jforbes pushed a commit to branch master in repository kernel-tests.
commit 250f5b1a3bea2700ebf21633f59bef564f44ff11 Author: Justin M. Forbes jforbes@redhat.com Date: Tue Feb 28 16:52:13 2017 -0600
Change install_dep to use dnf instead of yum --- utils/build-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/utils/build-deps.sh b/utils/build-deps.sh index d85eece..7608c9a 100644 --- a/utils/build-deps.sh +++ b/utils/build-deps.sh @@ -3,7 +3,7 @@ # Licensed under the terms of the GNU GPL License version 2
install_dep() { - yum install -y $1; + dnf install -y $1; rc=$?; if [ $rc -ne 0 ] then
kernel@lists.fedoraproject.org