diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-03-19 17:19:37 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-03-19 17:19:37 -0400 |
commit | e1936470ea10311614ff893113d40873b630d521 (patch) | |
tree | 00c6761de9ec3b5c206ee242fa5c2eafb21b3cb4 | |
parent | 853d40b60e593d81c01c3d5f3be289e05189b292 (diff) |
Fix phony .PHONY.
A couple makefiles had misspelled the magic .PHONY target as PHONY.
-rw-r--r-- | contrib/test_decoding/Makefile | 2 | ||||
-rw-r--r-- | 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 200c43efd6f..06c95461f8a 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 e785471e19b..dda84c23c78 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 |