From: Tom Lane Date: Thu, 21 Dec 2023 20:04:00 +0000 (-0500) Subject: pg_combinebackup didn't clean its tmp_check directory, either. X-Git-Tag: REL_17_BETA1~1255 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=ba08c10fc;p=postgresql.git 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.) --- diff --git a/src/bin/pg_combinebackup/Makefile b/src/bin/pg_combinebackup/Makefile index 78ba05e624b..5837493075f 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)