Skip to content

Commit e15cd0f

Browse files
committed
patch 9.1.1855: Makefile: using non-portable syntax
Problem: Makefile: using non-portable syntax (Jonathan Schleifer) Solution: Remove duplicate parenthesis closes: #18542 Signed-off-by: Christian Brabandt <[email protected]>
1 parent c95e143 commit e15cd0f

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3120,7 +3120,7 @@ auto/pathdef.c: Makefile auto/config.mk
31203120
-@echo 'char_u *compiled_user = (char_u *)"' | tr -d $(NL) >> $@
31213121
-@if test -n "$(COMPILEDBY)"; then \
31223122
echo "$(COMPILEDBY)" | tr -d $(NL) >> $@; \
3123-
else ((logname) 2>/dev/null || whoami) | tr -d $(NL) >> $@; fi
3123+
else (logname 2>/dev/null || whoami) | tr -d $(NL) >> $@; fi
31243124
-@echo '";' >> $@
31253125
-@echo 'char_u *compiled_sys = (char_u *)"' | tr -d $(NL) >> $@
31263126
-@if test -z "$(COMPILEDBY)"; then hostname | tr -d $(NL) >> $@; fi

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,8 @@ static char *(features[]) =
729729

730730
static int included_patches[] =
731731
{ /* Add new patch number below this line */
732+
/**/
733+
1855,
732734
/**/
733735
1854,
734736
/**/

0 commit comments

Comments
 (0)