diff options
author | Tom Lane | 2016-03-19 21:19:37 +0000 |
---|---|---|
committer | Tom Lane | 2016-03-19 21:19:37 +0000 |
commit | b190fe95bbf9222143c449afdc1c59783653e0b9 (patch) | |
tree | f77181786ccf2b65d64c57789ef8c328420cb30c | |
parent | 17a250b189a94a470e37ce14d0ebf72390c86d4d (diff) |
Fix phony .PHONY.
A couple makefiles had misspelled the magic .PHONY target as PHONY.
-rw-r--r-- | contrib/test_decoding/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/test_decoding/Makefile b/contrib/test_decoding/Makefile index 4f022b5a355..4e5f85aecdb 100644 --- a/contrib/test_decoding/Makefile +++ b/contrib/test_decoding/Makefile @@ -69,6 +69,6 @@ isolationcheck-install-force: all | submake-isolation submake-test_decoding --extra-install=contrib/test_decoding \ $(ISOLATIONCHECKS) -PHONY: submake-test_decoding submake-regress check \ +.PHONY: submake-test_decoding submake-regress check \ regresscheck regresscheck-install-force \ isolationcheck isolationcheck-install-force |