From 8e702012fd0d8e40f64d096005ade18fb9e7208b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Wed, 28 Jun 2023 15:39:17 +0200 Subject: [PATCH] ci: Use debuginfo-install to install debug symbols dnf doesn't seem to handle the plugin well in rawhide: bash-5.2# dnf -y debuginfo-install glib2 Unknown argument "debuginfo-install" for command "dnf5". Add "--help" for more information about the arguments. --- .gitlab-ci/libfprint-templates.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/libfprint-templates.yaml b/.gitlab-ci/libfprint-templates.yaml index dc35f806..46e0d475 100644 --- a/.gitlab-ci/libfprint-templates.yaml +++ b/.gitlab-ci/libfprint-templates.yaml @@ -33,7 +33,8 @@ diffutils LIBFPRINT_EXEC: | - dnf debuginfo-install -y \ + dnf -y install dnf-utils + debuginfo-install -y \ glib2 \ glibc \ libgusb \