Skip to content

Commit 9c38206

Browse files
authored
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 ```
1 parent 6e5f223 commit 9c38206

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Makefile.pre.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1940,8 +1940,7 @@ altinstall: commoninstall
19401940
.PHONY: commoninstall
19411941
commoninstall: check-clean-src @FRAMEWORKALTINSTALLFIRST@ \
19421942
altbininstall libinstall inclinstall libainstall \
1943-
sharedinstall altmaninstall \
1944-
@FRAMEWORKALTINSTALLLAST@
1943+
sharedinstall altmaninstall @FRAMEWORKALTINSTALLLAST@
19451944

19461945
# Install shared libraries enabled by Setup
19471946
DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)

0 commit comments

Comments
 (0)