diff options
author | Moritz Neeb <nt4u@kpvn.de> | 2023-07-22 15:59:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 15:59:11 (GMT) |
commit | 9c38206925246ab919cf558ac069ae9458720ba7 (patch) | |
tree | c8f4223f83418a420252ae762f4162844ce7b9d1 | |
parent | 6e5f2235f3754307292c7d8d3698958136b5e311 (diff) | |
download | cpython-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.in | 3 |
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) |