mirror of
https://github.com/vim/vim.git
synced 2025-10-16 07:24:23 -04:00
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 <cb@256bit.org>
This commit is contained in:
@@ -3120,7 +3120,7 @@ auto/pathdef.c: Makefile auto/config.mk
|
||||
-@echo 'char_u *compiled_user = (char_u *)"' | tr -d $(NL) >> $@
|
||||
-@if test -n "$(COMPILEDBY)"; then \
|
||||
echo "$(COMPILEDBY)" | tr -d $(NL) >> $@; \
|
||||
else ((logname) 2>/dev/null || whoami) | tr -d $(NL) >> $@; fi
|
||||
else (logname 2>/dev/null || whoami) | tr -d $(NL) >> $@; fi
|
||||
-@echo '";' >> $@
|
||||
-@echo 'char_u *compiled_sys = (char_u *)"' | tr -d $(NL) >> $@
|
||||
-@if test -z "$(COMPILEDBY)"; then hostname | tr -d $(NL) >> $@; fi
|
||||
|
@@ -729,6 +729,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1855,
|
||||
/**/
|
||||
1854,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user