From: Moritz Neeb Date: Sat, 22 Jul 2023 15:59:11 +0000 (+0200) Subject: gh-75371: reformat Makefile.pre.in to accommodate for empty FRAMEWORKALTINSTALLLAST... X-Git-Tag: v3.13.0a1~1286 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c38206925246ab919cf558ac069ae9458720ba7;p=thirdparty%2FPython%2Fcpython.git gh-75371: reformat Makefile.pre.in to accommodate for empty FRAMEWORKALTINSTALLLAST (#107035) in the case of an empty FRAMEWORKALTINSTALLLAST, this patch prevents leaving an astray linebreak and two tabs in the resulting Makefile. Before change: ``` .PHONY: commoninstall commoninstall: check-clean-src \ altbininstall libinstall inclinstall libainstall \ sharedinstall altmaninstall \ ``` After change (with empty FRAMEWORKALTINSTALLLAST): ``` .PHONY: commoninstall commoninstall: check-clean-src \ altbininstall libinstall inclinstall libainstall \ sharedinstall altmaninstall ``` --- diff --git a/Makefile.pre.in b/Makefile.pre.in index a4f76eaaaba5..3725feaca66c 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1940,8 +1940,7 @@ altinstall: commoninstall .PHONY: commoninstall commoninstall: check-clean-src @FRAMEWORKALTINSTALLFIRST@ \ altbininstall libinstall inclinstall libainstall \ - sharedinstall altmaninstall \ - @FRAMEWORKALTINSTALLLAST@ + sharedinstall altmaninstall @FRAMEWORKALTINSTALLLAST@ # Install shared libraries enabled by Setup DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)