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:31:03 -0500 |
commit | 27a5a0ee20eaf01cdf53f48498379b19e8f52e83 (patch) | |
tree | f4cf0981e8135b800b0d950d56709d84d8b98cac | |
parent | ea55b15813d721456aacfa4b347107980db5c9ef (diff) | |
download | postgresql-27a5a0ee20eaf01cdf53f48498379b19e8f52e83.tar.gz postgresql-27a5a0ee20eaf01cdf53f48498379b19e8f52e83.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 0667ba4f3f0..c1a93a43ea8 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -57,7 +57,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/ @@ -68,7 +68,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 |