From 1916673a1696eab66516c3f96bec1f2e4b92f761 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 21 Dec 2018 17:59:33 +0100 Subject: [PATCH] patch 8.1.0617: NSIS installer gets two files from the wrong directory Problem: NSIS installer gets two files from the wrong directory. Solution: Change ${VIMRT} to "..\". --- nsis/gvim.nsi | 4 ++-- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index 12a55bb61..17e3e7238 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -327,8 +327,8 @@ Section "$(str_section_exe)" id_section_exe File ${VIMSRC}\vimrun.exe File /oname=tee.exe ${VIMSRC}\teew32.exe File /oname=xxd.exe ${VIMSRC}\xxdw32.exe - File ${VIMRT}\vimtutor.bat - File ${VIMRT}\README.txt + File ..\vimtutor.bat + File ..\README.txt File ..\uninstal.txt File ${VIMRT}\*.vim File ${VIMRT}\rgb.txt diff --git a/src/version.c b/src/version.c index aadd16183..77bfd81e0 100644 --- a/src/version.c +++ b/src/version.c @@ -799,6 +799,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 617, /**/ 616, /**/ -- 2.40.0