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 | |
| parent | Merge branch 'ag/doc-send-email' (diff) | |
| parent | Makefile: avoid constant rebuilds with compilation database (diff) | |
| download | git-effbd42255aa2d93fbd5298538295b25f2b19057.tar.gz git-effbd42255aa2d93fbd5298538295b25f2b19057.zip | |
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
| -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 $@ |
