mirror of
https://github.com/vim/vim
synced 2025-03-16 06:47:52 +01:00
NSIS: Correctly distribute libsodium with the installer (#14422)
closes: vim/vim-win32-installer#337 Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
parent
915f3bf4c1
commit
19ecb46c55
1 changed files with 3 additions and 3 deletions
|
@ -409,6 +409,9 @@ Section "$(str_section_exe)" id_section_exe
|
|||
File /oname=gvim.exe ${VIMSRC}\gvim_ole.exe
|
||||
!if /FileExists "${VIMSRC}\vim${BIT}.dll"
|
||||
File ${VIMSRC}\vim${BIT}.dll
|
||||
!endif
|
||||
!if /FileExists "${VIMRT}\libsodium.dll"
|
||||
File ${VIMRT}\libsodium.dll
|
||||
!endif
|
||||
File /oname=install.exe ${VIMSRC}\installw32.exe
|
||||
File /oname=uninstall.exe ${VIMSRC}\uninstallw32.exe
|
||||
|
@ -429,9 +432,6 @@ Section "$(str_section_exe)" id_section_exe
|
|||
!if /FileExists "${VIMTOOLS}\winpty-agent.exe"
|
||||
File ${VIMTOOLS}\winpty-agent.exe
|
||||
!endif
|
||||
!if /FileExists "${VIMTOOLS}\libsodium.dll"
|
||||
File ${VIMTOOLS}\libsodium.dll
|
||||
!endif
|
||||
|
||||
SetOutPath $0\colors
|
||||
File /r ${VIMRT}\colors\*.*
|
||||
|
|
Loading…
Add table
Reference in a new issue