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:53 -0500 |
commit | 4e9e1b2a625eccfdfd09b8fca9693dd1fe96f256 (patch) | |
tree | 49f7ff09f7eb810c9876e0c2a44ffb6397fcfda2 | |
parent | ec7b29cb954fca911fddb9a76a19170256338c8f (diff) | |
download | postgresql-4e9e1b2a625eccfdfd09b8fca9693dd1fe96f256.tar.gz postgresql-4e9e1b2a625eccfdfd09b8fca9693dd1fe96f256.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 2352fc1171a..5f4c82ab8bc 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 |