aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-08-26 17:20:40 +0800
committerGitHub <noreply@github.com>2023-08-26 17:20:40 +0800
commit5bb17958c5694a28bd6b97f97adb4064bc79b984 (patch)
tree6e8667ce530e5f4aae56ea1ea124f3fcd04f08e9 /Makefile
parent1635c9e75e21e07c4331cf983e14a11c7e09b119 (diff)
downloadrneovim-5bb17958c5694a28bd6b97f97adb4064bc79b984.tar.gz
rneovim-5bb17958c5694a28bd6b97f97adb4064bc79b984.tar.bz2
rneovim-5bb17958c5694a28bd6b97f97adb4064bc79b984.zip
build: fix "make iwyu" not working (#24873)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 012a4f07fa..8294d48eb9 100644
--- a/Makefile
+++ b/Makefile
@@ -138,7 +138,7 @@ test: $(TEST)
iwyu: build/.ran-cmake
cmake --preset iwyu
- cmake --build --preset iwyu > build/iwyu.log
+ cmake --build build > build/iwyu.log
iwyu-fix-includes --only_re="src/nvim" --ignore_re="src/nvim/(auto|map.h|eval/encode.c)" --safe_headers < build/iwyu.log
cmake -B build -U ENABLE_IWYU