From aa4017c1eb41a778ec96c2b73ec0277a07ef9dab Mon Sep 17 00:00:00 2001 From: Joost Verburg Date: Thu, 9 Oct 2008 22:00:09 +0000 Subject: [PATCH] install files from Resources\tex in MiKTeX local root directory git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26833 a592a061-630c-0410-9148-cb99ea01b6c8 --- .../packaging/installer/setup/configure.nsh | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/development/Win32/packaging/installer/setup/configure.nsh b/development/Win32/packaging/installer/setup/configure.nsh index e6a408a54b..1e754fb9ed 100644 --- a/development/Win32/packaging/installer/setup/configure.nsh +++ b/development/Win32/packaging/installer/setup/configure.nsh @@ -126,26 +126,30 @@ Section -Configure SectionEnd #-------------------------------- -# dvipost package +# LaTeX files Var UpdateFNDBReturn -Section -dvipost +Section -LaTeXFiles - # Install package in local root + # Install files in local root - ${if} $PathLaTeXLocal != "" + ${If} $PathLaTeXLocal != "" + # dvipost SetOutPath "$PathLaTeXLocal\tex\latex\dvipost" File "${FILES_DVIPOST_PKG}\dvipost.sty" - ${endif} + # LyX files in Resources\tex + SetOutPath "$PathLaTeXLocal\tex\latex\lyx" + CopyFiles /SILENT "$INSTDIR\Resources\tex\*.*" "$PathLaTeXLocal\tex\latex\lyx" + ${EndIf} # Update file name database - ${if} $PathLaTeX != "" + ${If} $PathLaTeX != "" DetailPrint $(TEXT_CONFIGURE_MIKTEXFNDB) nsExec::ExecToLog '"$PathLaTeX\initexmf.exe" --update-fndb' Pop $UpdateFNDBReturn # Return value - ${endif} + ${EndIf} SectionEnd @@ -180,6 +184,7 @@ Var ConfigureReturn Section -ConfigureScript + SetOutPath "$INSTDIR\Resources" DetailPrint $(TEXT_CONFIGURE_LYX) nsExec::ExecToLog '"$INSTDIR\python\python.exe" "$INSTDIR\Resources\configure.py"' Pop $ConfigureReturn # Return value -- 2.39.5