diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 2b79fb287380aaeff3a88f63c2bc3b6eadfb74ca..89714fead25e175ae1447a2f890f234805647bfd 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!"