mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
installer: fix an issue with 64bit MiKTeX
- splitindex did not work when 64bit-MiKTeX was used
This commit is contained in:
parent
7aba4d51fa
commit
abb3bf224b
@ -1,5 +1,7 @@
|
||||
Changelog for LyX-206-2:
|
||||
- fix bug that View/Export a file as HTML did not work.
|
||||
- enable to use multiple indexes also with 64bit-MiKTeX
|
||||
- updated to Python 2.7.5
|
||||
|
||||
|
||||
Changelog for LyX-206-1:
|
||||
|
@ -300,24 +300,24 @@ Function ConfigureMiKTeX
|
||||
# move the files to the correct location for 64bit
|
||||
${if} $Is64bit == "true"
|
||||
CopyFiles /SILENT /FILESONLY "$3\miktex\bin\*.*" "$PathLaTeX"
|
||||
CreateDirectory "$3\miktex\bin\x64\lib"
|
||||
CopyFiles /SILENT "$3\miktex\bin\lib\*.*" "$3\miktex\bin\x64\lib"
|
||||
RMDir /r "$3\miktex\bin\lib"
|
||||
Delete "$3\miktex\bin\*.*"
|
||||
CreateDirectory "$3\miktex\bin\lib"
|
||||
CopyFiles /SILENT "$3\miktex\lib\*.*" "$3\miktex\bin\lib"
|
||||
RMDir /r "$3\miktex\lib"
|
||||
${endif}
|
||||
${endif}
|
||||
${endif}
|
||||
${else}
|
||||
${else} # if admin or power user
|
||||
${ifnot} ${FileExists} "$PathLaTeX\perl.exe"
|
||||
SetOutPath "$PathLaTeXLocal"
|
||||
File /r ${FILES_MIKTEX}
|
||||
# move the files to the correct location for 64bit
|
||||
${if} $Is64bit == "true"
|
||||
CopyFiles /SILENT /FILESONLY "$PathLaTeXLocal\miktex\bin\*.*" "$PathLaTeX"
|
||||
CreateDirectory "$PathLaTeXLocal\miktex\bin\x64\lib"
|
||||
CopyFiles /SILENT "$PathLaTeXLocal\miktex\bin\lib\*.*" "$PathLaTeXLocal\miktex\bin\x64\lib"
|
||||
RMDir /r "$PathLaTeXLocal\miktex\bin\lib"
|
||||
Delete "$PathLaTeXLocal\miktex\bin\*.*"
|
||||
CreateDirectory "$PathLaTeXLocal\miktex\bin\lib"
|
||||
CopyFiles /SILENT "$PathLaTeXLocal\miktex\lib\*.*" "$PathLaTeXLocal\miktex\bin\lib"
|
||||
RMDir /r "$PathLaTeXLocal\miktex\lib"
|
||||
${endif}
|
||||
${endif}
|
||||
${endif}
|
||||
|
Loading…
Reference in New Issue
Block a user