summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Neeb <nt4u@kpvn.de>2023-07-22 15:59:11 (GMT)
committerGitHub <noreply@github.com>2023-07-22 15:59:11 (GMT)
commit9c38206925246ab919cf558ac069ae9458720ba7 (patch)
treec8f4223f83418a420252ae762f4162844ce7b9d1
parent6e5f2235f3754307292c7d8d3698958136b5e311 (diff)
downloadcpython-9c38206925246ab919cf558ac069ae9458720ba7.zip
cpython-9c38206925246ab919cf558ac069ae9458720ba7.tar.gz
cpython-9c38206925246ab919cf558ac069ae9458720ba7.tar.bz2
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 ```
-rw-r--r--Makefile.pre.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index a4f76ea..3725fea 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)