From d9aff6b81731ba55a502d3768a55233b666877fd Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 14 Mar 2021 15:53:45 -0400 Subject: [PATCH] * maintMakefile: Don't make .check-git-HEAD .PHONY --- maintMakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/maintMakefile b/maintMakefile index 49067987..e3edd0a0 100644 --- a/maintMakefile +++ b/maintMakefile @@ -137,12 +137,13 @@ ChangeLog: .check-git-HEAD echo "WARNING: $(gl2cl) is not available. No $@ generated."; \ fi -.PHONY: .check-git-HEAD -.check-git-HEAD: +.check-git-HEAD: FORCE sha="`git rev-parse HEAD`"; \ test -f '$@' && [ "`cat '$@' 2>/dev/null`" = "$$sha" ] \ || echo "$$sha" > '$@' +.PHONY: FORCE +FORCE:;@: ## ---------------- ## ## Updating files. ##