From e1936470ea10311614ff893113d40873b630d521 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 19 Mar 2016 17:19:37 -0400 Subject: [PATCH] Fix phony .PHONY. A couple makefiles had misspelled the magic .PHONY target as PHONY. --- contrib/test_decoding/Makefile | 2 +- src/test/modules/brin/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/test_decoding/Makefile b/contrib/test_decoding/Makefile index 200c43efd6..06c95461f8 100644 --- a/contrib/test_decoding/Makefile +++ b/contrib/test_decoding/Makefile @@ -65,7 +65,7 @@ isolationcheck-install-force: all | submake-isolation submake-test_decoding temp $(pg_isolation_regress_installcheck) \ $(ISOLATIONCHECKS) -PHONY: submake-test_decoding submake-regress check \ +.PHONY: submake-test_decoding submake-regress check \ regresscheck regresscheck-install-force \ isolationcheck isolationcheck-install-force diff --git a/src/test/modules/brin/Makefile b/src/test/modules/brin/Makefile index e785471e19..dda84c23c7 100644 --- a/src/test/modules/brin/Makefile +++ b/src/test/modules/brin/Makefile @@ -24,7 +24,7 @@ isolation-check: | submake-isolation --outputdir=./isolation_output \ $(ISOLATIONCHECKS) -PHONY: check isolation-check +.PHONY: check isolation-check submake-isolation: $(MAKE) -C $(top_builddir)/src/test/isolation all