From: Tom Lane Date: Sat, 7 May 2016 02:28:01 +0000 (-0400) Subject: Clean up after pg_dump test runs. X-Git-Url: http://git.postgresql.org/gitweb/static/developers.postgresql.org?a=commitdiff_plain;h=74a73b17225385e54dbf9fc2f77aaa59191ac04b;p=users%2Frhaas%2Fpostgres.git Clean up after pg_dump test runs. The tmp_check directory needs to be removed by "make clean", and also ignored by .gitignore. --- diff --git a/src/bin/pg_dump/.gitignore b/src/bin/pg_dump/.gitignore index ae4cf3ce42..e6d7812779 100644 --- a/src/bin/pg_dump/.gitignore +++ b/src/bin/pg_dump/.gitignore @@ -1,3 +1,5 @@ /pg_dump /pg_dumpall /pg_restore + +/tmp_check/ diff --git a/src/bin/pg_dump/Makefile b/src/bin/pg_dump/Makefile index 9a96361aa3..25336a5f25 100644 --- a/src/bin/pg_dump/Makefile +++ b/src/bin/pg_dump/Makefile @@ -53,3 +53,4 @@ uninstall: clean distclean maintainer-clean: rm -f pg_dump$(X) pg_restore$(X) pg_dumpall$(X) $(OBJS) pg_dump.o common.o pg_dump_sort.o pg_restore.o pg_dumpall.o + rm -rf tmp_check