From: Tom Lane Date: Sat, 26 Nov 2022 15:30:31 +0000 (-0500) Subject: Remove temporary portlock directory during make [dist]clean. X-Git-Tag: REL_11_19~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b85fd738529b345666c4a94ce837327a2f86d75e;p=thirdparty%2Fpostgresql.git Remove temporary portlock directory during make [dist]clean. Another oversight in 9b4eafcaf. --- diff --git a/GNUmakefile.in b/GNUmakefile.in index 1fd7c362b4c..b314e528626 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