Skip to content

Commit 613d0bc

Browse files
committed
patch 9.1.1047: Makefiles uses non-portable syntax
Problem: Makefiles uses non-portable syntax (simo-zz, after v9.1.1029) Solution: Revert auto-generation of MAJOR/MINOR variables fixes: #16502 closes: #16503 Signed-off-by: Christian Brabandt <[email protected]>
1 parent 9dfc7e5 commit 613d0bc

2 files changed

Lines changed: 4 additions & 8 deletions

File tree

Makefile

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,8 @@ syntaxtest:
9696
# To do all this you need the Unix archive and compiled binaries.
9797
# Before creating an archive first delete all backup files, *.orig, etc.
9898

99-
# I think it is better to place getting the current version number in the
100-
# configure script. And then automatically fill in the fields in the files
101-
# listed below. (Restorer)
102-
103-
MAJOR != grep -E 'VIM_VERSION_MAJOR\s{2,}' src/version.h | \
104-
awk '{ printf "%d",$$3 }'
105-
MINOR != grep -E 'VIM_VERSION_MINOR\s{2,}' src/version.h | \
106-
awk '{ printf "%d",$$3 }'
99+
MAJOR = 9
100+
MINOR = 1
107101

108102
# CHECKLIST for creating a new version:
109103
#

src/version.c

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

705705
static int included_patches[] =
706706
{ /* Add new patch number below this line */
707+
/**/
708+
1047,
707709
/**/
708710
1046,
709711
/**/

0 commit comments

Comments
 (0)