mirror of
https://github.com/vim/vim.git
synced 2026-05-28 00:21:37 +02:00
08c4a7faff
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 <ross.burton@arm.com> Signed-off-by: Christian Brabandt <cb@256bit.org> Signed-off-by: Christian Brabandt <cb@256bit.org>