From: William Roberts <william.c.roberts@xxxxxxxxx> The README.md file in the selinux-testsuite states that kernel-devel package is needed. However, for everything to work you need the kernel-devel package specific to your kernel version. Update the dnf command to include uname -r, so that a copy + paste of the dnf command, results in a system with dependencies filled for recent Fedora distro's like Fedora 32. Signed-off-by: William Roberts <william.c.roberts@xxxxxxxxx> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f7e5d92a100..1bec9fe85c91 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ following command: attr \ libbpf-devel \ keyutils-libs-devel \ - kernel-devel \ + kernel-devel-$(uname -r) \ quota \ xfsprogs-devel \ libuuid-devel -- 2.17.1