From d3b050c3084f12545a8c224f8d88813b25f46c80 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 18 Nov 2016 20:37:25 +0000 Subject: [PATCH] Don't build the lexer verifier during tidy Tidy is not the right place to do this. Tidy is for running lints. We should instead be running the lexer/grammar tests as part of the test suite. This may fix nightly breakage, but I don't know why. --- mk/tests.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mk/tests.mk b/mk/tests.mk index 9885d275e8b..35ee7697a7a 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -243,8 +243,7 @@ cleantestlibs: .PHONY: tidy tidy: $(HBIN0_H_$(CFG_BUILD))/tidy$(X_$(CFG_BUILD)) \ - $(SNAPSHOT_RUSTC_POST_CLEANUP) \ - check-build-lexer-verifier + $(SNAPSHOT_RUSTC_POST_CLEANUP) $(TARGET_RPATH_VAR0_T_$(CFG_BUILD)_H_$(CFG_BUILD)) $< $(S)src $(HBIN0_H_$(CFG_BUILD))/tidy$(X_$(CFG_BUILD)): \