diff options
author | Robert Haas <rhaas@postgresql.org> | 2020-04-03 19:51:18 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2020-04-03 19:51:18 -0400 |
commit | 9f8f881caa0fabdf7ff46cc55a991ffeab39bd92 (patch) | |
tree | 06768aeb61f0f2b561ee273073f6bc2307baf90b | |
parent | 19c0422ad012636d00ba221bd7052cb71448efca (diff) | |
download | postgresql-9f8f881caa0fabdf7ff46cc55a991ffeab39bd92.tar.gz postgresql-9f8f881caa0fabdf7ff46cc55a991ffeab39bd92.zip |
pg_validatebackup: Fix 'make clean' to remove tmp_check.
Report by Tom Lane.
Discussion: http://postgr.es/m/22394.1585951968@sss.pgh.pa.us
-rw-r--r-- | src/bin/pg_validatebackup/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/pg_validatebackup/Makefile b/src/bin/pg_validatebackup/Makefile index 04ef7d30511..b1c2b7c1be3 100644 --- a/src/bin/pg_validatebackup/Makefile +++ b/src/bin/pg_validatebackup/Makefile @@ -31,6 +31,7 @@ uninstall: clean distclean maintainer-clean: rm -f pg_validatebackup$(X) $(OBJS) + rm -rf tmp_check check: $(prove_check) |