From e2a37484ae471b9c8ba8b7e59e018b90440e9236 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 7c529e79b..9b3b44dca 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); \