mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
patch 9.0.0258: MS-Windows installer skips syntax/shared
Problem: MS-Windows installer skips syntax/shared. Solution: Use "File /r" in the installer script. (Ken Takata, closes #10972)
This commit is contained in:
@ -366,11 +366,7 @@ Section "$(str_section_exe)" id_section_exe
|
|||||||
File ${VIMTOOLS}\winpty-agent.exe
|
File ${VIMTOOLS}\winpty-agent.exe
|
||||||
|
|
||||||
SetOutPath $0\colors
|
SetOutPath $0\colors
|
||||||
File ${VIMRT}\colors\*.*
|
File /r ${VIMRT}\colors\*.*
|
||||||
SetOutPath $0\colors\tools
|
|
||||||
File ${VIMRT}\colors\tools\*.*
|
|
||||||
SetOutPath $0\colors\lists
|
|
||||||
File ${VIMRT}\colors\lists\*.*
|
|
||||||
|
|
||||||
SetOutPath $0\compiler
|
SetOutPath $0\compiler
|
||||||
File ${VIMRT}\compiler\*.*
|
File ${VIMRT}\compiler\*.*
|
||||||
@ -395,13 +391,7 @@ Section "$(str_section_exe)" id_section_exe
|
|||||||
File ${VIMRT}\plugin\*.*
|
File ${VIMRT}\plugin\*.*
|
||||||
|
|
||||||
SetOutPath $0\autoload
|
SetOutPath $0\autoload
|
||||||
File ${VIMRT}\autoload\*.*
|
File /r ${VIMRT}\autoload\*.*
|
||||||
|
|
||||||
SetOutPath $0\autoload\dist
|
|
||||||
File ${VIMRT}\autoload\dist\*.*
|
|
||||||
|
|
||||||
SetOutPath $0\autoload\xml
|
|
||||||
File ${VIMRT}\autoload\xml\*.*
|
|
||||||
|
|
||||||
SetOutPath $0\import\dist
|
SetOutPath $0\import\dist
|
||||||
File ${VIMRT}\import\dist\*.*
|
File ${VIMRT}\import\dist\*.*
|
||||||
@ -410,7 +400,7 @@ Section "$(str_section_exe)" id_section_exe
|
|||||||
File ${VIMSRC}\vim.ico
|
File ${VIMSRC}\vim.ico
|
||||||
|
|
||||||
SetOutPath $0\syntax
|
SetOutPath $0\syntax
|
||||||
File ${VIMRT}\syntax\*.*
|
File /r ${VIMRT}\syntax\*.*
|
||||||
|
|
||||||
SetOutPath $0\spell
|
SetOutPath $0\spell
|
||||||
File ${VIMRT}\spell\*.txt
|
File ${VIMRT}\spell\*.txt
|
||||||
|
@ -731,6 +731,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
258,
|
||||||
/**/
|
/**/
|
||||||
257,
|
257,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user