Skip to content

Commit

Permalink
Fix order of test-syntax-suggest-prepare for old GNU Make
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Aug 11, 2023
1 parent a792890 commit 8fbb79f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -1537,7 +1537,7 @@ yes-test-syntax-suggest: $(PREPARE_SYNTAX_SUGGEST)
$(RSPECOPTS) spec/syntax_suggest/$(SYNTAX_SUGGEST_SPECS)
no-test-syntax-suggest:

check: $(DOT_WAIT) test-syntax-suggest
check: $(DOT_WAIT) $(PREPARE_SYNTAX_SUGGEST) test-syntax-suggest

test-bundler-precheck: $(TEST_RUNNABLE)-test-bundler-precheck
no-test-bundler-precheck:
Expand Down
1 change: 1 addition & 0 deletions defs/gmake.mk
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ TEST_TARGETS := $(patsubst test-bundler-parallel,test-bundler-parallel $(PREPARE
TEST_TARGETS := $(patsubst test-syntax-suggest,test-syntax-suggest $(PREPARE_SYNTAX_SUGGEST),$(TEST_TARGETS))
TEST_DEPENDS := $(filter-out test-short $(TEST_TARGETS),$(TEST_DEPENDS))
TEST_DEPENDS += $(if $(filter great exam love check,$(MAKECMDGOALS)),all exts)
TEST_TARGETS := $(patsubst yes-%,%,$(filter-out no-%,$(TEST_TARGETS)))
endif

in-srcdir := $(if $(filter-out .,$(srcdir)),$(CHDIR) $(srcdir) &&)
Expand Down

0 comments on commit 8fbb79f

Please sign in to comment.