From 334f09d93431d17e136e9872ee58d67e33aa5e77 Mon Sep 17 00:00:00 2001 From: silverwind Date: Fri, 6 Mar 2020 07:47:40 +0100 Subject: [PATCH] Fix makefile syntax error (#10622) Fix error found via checkmake. It was the only worthwhile issue it reported. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c529e79be..9b3b44dcaa 100644 --- a/Makefile +++ b/Makefile @@ -258,7 +258,7 @@ fmt-check: test: GO111MODULE=on $(GO) test $(GOTESTFLAGS) -mod=vendor -tags='sqlite sqlite_unlock_notify' $(PACKAGES) -PHONY: test-check +.PHONY: test-check test-check: @echo "Checking if tests have changed the source tree..."; @diff=$$(git status -s); \