diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-05-06 22:28:01 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-05-06 22:28:01 -0400 |
commit | 74a73b17225385e54dbf9fc2f77aaa59191ac04b (patch) | |
tree | 3a2648f1d770a1f6968f1351a87cbf5c495f034e /src | |
parent | 1a2c17f8e221b0c3c63cb2b1be1f862444f62516 (diff) | |
download | postgresql-74a73b17225385e54dbf9fc2f77aaa59191ac04b.tar.gz postgresql-74a73b17225385e54dbf9fc2f77aaa59191ac04b.zip |
Clean up after pg_dump test runs.
The tmp_check directory needs to be removed by "make clean",
and also ignored by .gitignore.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/.gitignore | 2 | ||||
-rw-r--r-- | src/bin/pg_dump/Makefile | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/bin/pg_dump/.gitignore b/src/bin/pg_dump/.gitignore index ae4cf3ce428..e6d78127793 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 9a96361aa35..25336a5f25d 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 |