From ad7f2d221ae23f6f278e7793136f47a019df2339 Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <joscha@schmiedt.dev> Date: Tue, 12 Nov 2024 20:16:31 +0100 Subject: [PATCH] Fix missing -v flag for iwyu on Fedora --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c1475b8..d84768b 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ build-debug: conan-install-debug build-release: conan-install-release # cmake --preset conan-release # for CMake >= 3.23 - @command -v iwyu || command include-what-you-use || \ + @command -v iwyu || command -v include-what-you-use || \ (echo "Could not find 'iwyu', exiting."; exit 1) @command -v clang-tidy || command -v clang-tidy-16 || \ (echo "Could not find 'clang-tidy'(-16), exiting."; exit 1) -- GitLab