diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-05-19 16:02:45 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-05-19 16:02:46 -0700 |
| commit | effbd42255aa2d93fbd5298538295b25f2b19057 (patch) | |
| tree | 320ba5ca28a50231dafc1deb661e53537fcef5c0 /Makefile | |
| parent | ae0b60e0095a118af7bb4026622d8c308e0a4c52 (diff) | |
| parent | 880146aefe0e60e330409a916a0c1b4ac21388c6 (diff) | |
| download | git-effbd42255aa2d93fbd5298538295b25f2b19057.tar.xz | |
Merge branch 'bc/make-avoid-unneeded-rebuild-with-compdb-dir'
Build performance fix.
* bc/make-avoid-unneeded-rebuild-with-compdb-dir:
Makefile: avoid constant rebuilds with compilation database
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2805,7 +2805,7 @@ endif compdb_dir = compile_commands ifeq ($(GENERATE_COMPILATION_DATABASE),yes) -missing_compdb_dir = $(compdb_dir) +missing_compdb_dir = $(filter-out $(wildcard $(compdb_dir)), $(compdb_dir)) $(missing_compdb_dir): @mkdir -p $@ |
