summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRestorerZ <restorer@mail2k.ru>2024-07-17 19:28:25 +0200
committerChristian Brabandt <cb@256bit.org>2024-07-17 19:28:25 +0200
commit30d54fdddf129e30345874867e0ca2bda2eaabfa (patch)
tree706426ce533c9fb718959529bc87de6359b9cd84
parentac4ce9e15b7ee0fccfa72aecf98b696d880e53c3 (diff)
patch 9.1.0595: make errors out with the po Makefilev9.1.0595
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>
-rw-r--r--src/po/Makefile4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/po/Makefile b/src/po/Makefile
index 0f7f85dd17..f23c6d66f4 100644
--- a/src/po/Makefile
+++ b/src/po/Makefile
@@ -314,7 +314,7 @@ $(LANGUAGES):
#######
# Preparing the POT file of the plug-in package
-POT_PLUGPACKAGE_PATH != pwd
+POT_PLUGPACKAGE_PATH = $(PWD)
$(PLUGPACKAGE).pot: $(PO_PLUG_INPUTLIST)
$(VIMPROG) -u NONE --not-a-term -S tojavascript.vim \
$(PLUGPACKAGE).pot $?
@@ -327,7 +327,7 @@ $(PLUGPACKAGE).pot: $(PO_PLUG_INPUTLIST)
rm -f *.js ./vim_to_js
# Converting the PO file of the plug-in package to the binary format of the MO
-MO_PLUGPACKAGE_PATH != pwd
+MO_PLUGPACKAGE_PATH = $(PWD)
$(PLUGPACKAGE).mo: $(PO_PLUGPACKAGE)
$(MSGFMTCMD) -o $(MO_PLUGPACKAGE_PATH)/$@ $<
diff --git a/src/version.c b/src/version.c
index 986edc9286..5cff0a3d6e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 595,
+/**/
594,
/**/
593,