patch 9.1.2145: intstalltutor Makefile target does not create the tutor/sv dir
Commit: https://github.com/vim/vim/commit/08c4a7faff5626e6b11a0a8ae5e3b19e22b43fc2 Author: Ross Burton <[email protected]> Date: Thu Feb 12 17:50:03 2026 +0100 patch 9.1.2145: intstalltutor Makefile target does not create the tutor/sv dir Problem: intstalltutor Makefile target does not create the tutor/sv dir Solution: Add the missing mkdir() calls to the Makefile (Ross Burton) The installtutor target doesn't explicitly create the Swedish directory that it is going to put files into: make[1]: Entering directory 'vim-9.1.2128/src' /bin/sh install-sh -c -d DESTDIR/usr/share/vim/vim91 chmod 755 DESTDIR/usr/share/vim/vim91 /bin/sh install-sh -c -d DESTDIR/usr/share/vim/vim91/tutor/en chmod 755 DESTDIR/usr/share/vim/vim91/tutor/en /bin/sh install-sh -c -d DESTDIR/usr/share/vim/vim91/tutor/sr chmod 755 DESTDIR/usr/share/vim/vim91/tutor/sr /bin/sh install-sh -c -d DESTDIR/usr/share/vim/vim91/tutor/it chmod 755 DESTDIR/usr/share/vim/vim91/tutor/it /bin/sh install-sh -c -d DESTDIR/usr/share/vim/vim91/tutor/ru chmod 755 DESTDIR/usr/share/vim/vim91/tutor/ru cp ../runtime/tutor/README* ../runtime/tutor/tutor* DESTDIR/usr/share/vim/vim91/tutor cp ../runtime/tutor/en/* DESTDIR/usr/share/vim/vim91/tutor/en/ cp ../runtime/tutor/it/* DESTDIR/usr/share/vim/vim91/tutor/it/ cp ../runtime/tutor/ru/* DESTDIR/usr/share/vim/vim91/tutor/ru/ cp ../runtime/tutor/sr/* DESTDIR/usr/share/vim/vim91/tutor/sr/ cp ../runtime/tutor/sv/* DESTDIR/usr/share/vim/vim91/tutor/sv/ cp: target 'DESTDIR/usr/share/vim/vim91/tutor/sv/': No such file or directory Add the missing dependency on $(DEST_TUTOR)/sv to ensure this directory is created. closes: #19385 Signed-off-by: Ross Burton <[email protected]> Signed-off-by: Christian Brabandt <[email protected]> Signed-off-by: Christian Brabandt <[email protected]> diff --git a/runtime/doc/version9.txt b/runtime/doc/version9.txt index 880ea1f70..3644d1760 100644 --- a/runtime/doc/version9.txt +++ b/runtime/doc/version9.txt @@ -1,4 +1,4 @@ -*version9.txt* For Vim version 9.1. Last change: 2026 Feb 09 +*version9.txt* For Vim version 9.1. Last change: 2026 Feb 12 VIM REFERENCE MANUAL by Bram Moolenaar @@ -52549,4 +52549,8 @@ Solution: In garbage_collect(), iterate through all buffers and call set_ref_in_list() for b_recorded_changes to ensure the list and its contents are marked as reachable (Paul Ollis). +Patch 9.1.2145 +Problem: intstalltutor Makefile target does not create the tutor/sv dir +Solution: Add the missing mkdir() calls to the Makefile (Ross Burton) + vim:tw=78:ts=8:noet:ft=help:norl:fdm=manual:nofoldenable diff --git a/src/Makefile b/src/Makefile index 75d8ff6c1..b4c31bed6 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2487,7 +2487,7 @@ installgtutorbin: $(DEST_BIN) $(INSTALL_DATA) gvimtutor $(DEST_BIN)/$(GVIMNAME)tutor chmod $(SCRIPTMOD) $(DEST_BIN)/$(GVIMNAME)tutor -installtutor: $(DEST_RT) $(DEST_TUTOR)/en $(DEST_TUTOR)/it $(DEST_TUTOR)/sr $(DEST_TUTOR)/ru +installtutor: $(DEST_RT) $(DEST_TUTOR)/en $(DEST_TUTOR)/it $(DEST_TUTOR)/sr $(DEST_TUTOR)/sv $(DEST_TUTOR)/ru -$(INSTALL_DATA) $(TUTORSOURCE)/README* $(TUTORSOURCE)/tutor* $(DEST_TUTOR) -$(INSTALL_DATA) $(TUTORSOURCE)/en/* $(DEST_TUTOR)/en/ -$(INSTALL_DATA) $(TUTORSOURCE)/it/* $(DEST_TUTOR)/it/ diff --git a/src/version.c b/src/version.c index f677f448a..0819639cb 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2145, /**/ 2144, /**/ -- -- 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/E1vqa31-008hfX-9H%40256bit.org.
