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:58 -0500 |
commit | a2dcd78dd0837c5b705569f99d86ebf0d5a5725f (patch) | |
tree | 0ae2d73aa282bb06fb5e6db316cb30304eb8808c | |
parent | 46d724107b5527b1b94e15358acd1bf030dd70c4 (diff) | |
download | postgresql-a2dcd78dd0837c5b705569f99d86ebf0d5a5725f.tar.gz postgresql-a2dcd78dd0837c5b705569f99d86ebf0d5a5725f.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 |