patch 9.1.0939: make installtutor fails
Commit:
https://github.com/vim/vim/commit/3353833f891cd4a79f57a0e88dc68543a05d11ce
Author: Christian Brabandt <[email protected]>
Date: Tue Dec 17 20:16:58 2024 +0100
patch 9.1.0939: make installtutor fails
Problem: make installtutor fails
(Antonio Giovanni Colombo, after v9.1.0932)
Solution: Fix Makefile rule
Signed-off-by: Christian Brabandt <[email protected]>
diff --git a/src/Makefile b/src/Makefile
index b677ebc3c..f5d01cf08 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -2473,7 +2473,8 @@ installgtutorbin: $(DEST_BIN)
installtutor: $(DEST_RT) $(DEST_TUTOR)
-$(INSTALL_DATA) $(TUTORSOURCE)/README* $(TUTORSOURCE)/tutor*
$(DEST_TUTOR)
- -$(INSTALL_DATA) $(TUTORSOURCE)/en/* $(DEST_TUTOR)/en/
$(DEST_TUTOR)/it/* $(DEST_TUTOR)/it/
+ -$(INSTALL_DATA) $(TUTORSOURCE)/en/* $(DEST_TUTOR)/en/
+ -$(INSTALL_DATA) $(TUTORSOURCE)/it/* $(DEST_TUTOR)/it/
-rm -f $(DEST_TUTOR)/*.info
chmod $(HELPMOD) $(DEST_TUTOR)/*
chmod $(DIRMOD) $(DEST_TUTOR)/en
diff --git a/src/version.c b/src/version.c
index 1bf116308..bee9e95b8 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 939,
/**/
938,
/**/
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/E1tNdGh-0035pC-Kf%40256bit.org.