Paul A. Rubin <[EMAIL PROTECTED]> writes: > It is a bug. Try the following work-around and see if it helps: > 1. Replace the configure file in the LyX141\Resources directory with > the newer version attached.
So, my suggested fix worked? Great! Jean-Marc, this should go in both the 1.4 and 1.5 trees. The original version of the code, which uses the full path to tex2lyx, won't work if that path contains spaces. The work around is to add the tex2lyx directory to the PATH (the directory containing lyx.exe is already in PATH, so we need add nothing if we're using an installed version of LyX). Regards, Angus # Search for an installed tex2lyx or a ready-to-install one echo $ac_n "checking for a LaTeX -> LyX converter""... $ac_c" echo "$ac_t""" tex_to_lyx_command= PATHORIG="$PATH" PATH="$PWD/../src/tex2lyx:$PATH" export PATH for ac_prog in 'tex2lyx -f $$i $$o' \ 'tex2lyx'"$version_suffix"' -f $$i $$o' do