From ba08c10fcd7f58486e77166fa93e61ed59962da0 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 21 Dec 2023 15:04:00 -0500 Subject: [PATCH] pg_combinebackup didn't clean its tmp_check directory, either. Another oversight in dc2123400, visible when building/testing in the source directory. (There's a lot of stuff we could simplify if we stop supporting that case, but for now it's still mainstream.) --- src/bin/pg_combinebackup/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/pg_combinebackup/Makefile b/src/bin/pg_combinebackup/Makefile index 78ba05e624..5837493075 100644 --- a/src/bin/pg_combinebackup/Makefile +++ b/src/bin/pg_combinebackup/Makefile @@ -44,6 +44,7 @@ uninstall: clean distclean maintainer-clean: rm -f pg_combinebackup$(X) $(OBJS) + rm -rf tmp_check check: $(prove_check)