diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2022-11-26 10:30:31 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2022-11-26 10:30:46 -0500 |
commit | 3ae0c48a59f747905f26acd38fecdc3e3f505b5b (patch) | |
tree | 3fe75a410d137170b9e86298f9ebb3ebdb43a00d | |
parent | fec24b75230e59ebf90ea5acadb577a1e2b2e923 (diff) | |
download | postgresql-3ae0c48a59f747905f26acd38fecdc3e3f505b5b.tar.gz postgresql-3ae0c48a59f747905f26acd38fecdc3e3f505b5b.zip |
Remove temporary portlock directory during make [dist]clean.
Another oversight in 9b4eafcaf.
-rw-r--r-- | GNUmakefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in index 38713b5d123..5434467381d 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -47,7 +47,7 @@ $(call recurse,distprep coverage,doc src config contrib) # it's not built by default $(call recurse,clean,doc contrib src config) clean: - rm -rf tmp_install/ + rm -rf tmp_install/ portlock/ # Garbage from autoconf: @rm -rf autom4te.cache/ @@ -58,7 +58,7 @@ distclean maintainer-clean: $(MAKE) -C contrib $@ $(MAKE) -C config $@ $(MAKE) -C src $@ - rm -rf tmp_install/ + rm -rf tmp_install/ portlock/ # Garbage from autoconf: @rm -rf autom4te.cache/ rm -f config.cache config.log config.status GNUmakefile |