Ruurd wrotes:

-----------------------------
@ echo off
rem Configure script for Win32
rem calls msys sh.exe
rem written by Ruurd Reitsma
echo %0
SET PATH=%~p0..\..\bin;%PATH%
echo %PATH%
%~p0..\..\bin\sh.exe --login %0
-------------------------------

This doesn't work when LyX and LaTeX are in different drives. The correct one is

-----------------------------
@ echo off
rem Configure script for Win32
rem calls msys sh.exe
rem written by Ruurd Reitsma
echo %0
SET PATH=%~dp0..\..\bin;%PATH%
echo %PATH%
%~dp0..\..\bin\sh.exe --login %0
-------------------------------

see

http://wiki.lyx.org/pmwiki.php/LyX/WindowsSetup

regards Uwe

Reply via email to