Skip to content

Commit e0d88be

Browse files
author
Matej Habrnal
committed
autogen: use dnf instead of yum to install dependencies
DNF's parameter --setopt=strict=0 causes ignoring non-existing packages. Signed-off-by: Matej Habrnal <[email protected]>
1 parent f37f1b5 commit e0d88be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autogen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ case "$1" in
3131

3232
if [ "$2" == "--install" ]; then
3333
set -x verbose
34-
sudo yum install $DEPS_LIST
34+
sudo dnf install --setopt=strict=0 $DEPS_LIST
3535
set +x verbose
3636
else
3737
echo $DEPS_LIST

0 commit comments

Comments
 (0)