Skip to content

Commit 30d54fd

Browse files
RestorerZchrisbra
authored andcommitted
patch 9.1.0595: make errors out with the po Makefile
Problem: make errors out with the po Makefile (yanivshlom, after v9.1.0558) Solution: Set variables differently (RestorerZ) fixes: #15275 closes: #15282 Signed-off-by: RestorerZ <restorer@mail2k.ru> Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent ac4ce9e commit 30d54fd

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/po/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ $(LANGUAGES):
314314
#######
315315

316316
# Preparing the POT file of the plug-in package
317-
POT_PLUGPACKAGE_PATH != pwd
317+
POT_PLUGPACKAGE_PATH = $(PWD)
318318
$(PLUGPACKAGE).pot: $(PO_PLUG_INPUTLIST)
319319
$(VIMPROG) -u NONE --not-a-term -S tojavascript.vim \
320320
$(PLUGPACKAGE).pot $?
@@ -327,7 +327,7 @@ $(PLUGPACKAGE).pot: $(PO_PLUG_INPUTLIST)
327327
rm -f *.js ./vim_to_js
328328

329329
# Converting the PO file of the plug-in package to the binary format of the MO
330-
MO_PLUGPACKAGE_PATH != pwd
330+
MO_PLUGPACKAGE_PATH = $(PWD)
331331
$(PLUGPACKAGE).mo: $(PO_PLUGPACKAGE)
332332
$(MSGFMTCMD) -o $(MO_PLUGPACKAGE_PATH)/$@ $<
333333

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+
595,
707709
/**/
708710
594,
709711
/**/

0 commit comments

Comments
 (0)