From b66b035b0c0836e448faf3ea5f347b0dc944d5dc Mon Sep 17 00:00:00 2001 From: Guillem <guillembartrina@gmail.com> Date: Sun, 17 May 2020 13:45:32 +0200 Subject: [PATCH] Fix inno setup release version --- packages/win32_inno/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 2b79fb287..89714fead 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -38,10 +38,10 @@ package: $(PD_INNO_SETUP) # start $(PD_INNO_SETUP) ## this compiles the package on the command line. On 64-bit Windows # we have to look in a different path, hence the ugly ifeq below... -ifeq (,$(wildcard /c/Program\ Files/Inno\ Setup\ 5/ISCC.exe)) - /c/Program\ Files\ \(x86\)/Inno\ Setup\ 5/ISCC.exe $(PD_INNO_SETUP) +ifeq (,$(wildcard /c/Program\ Files/Inno\ Setup\ 6/ISCC.exe)) + /c/Program\ Files\ \(x86\)/Inno\ Setup\ 6/ISCC.exe $(PD_INNO_SETUP) else - /c/Program\ Files/Inno\ Setup\ 5/ISCC.exe $(PD_INNO_SETUP) + /c/Program\ Files/Inno\ Setup\ 6/ISCC.exe $(PD_INNO_SETUP) endif @echo " " @echo "win32_inno install succeeded!" -- GitLab