Angus Leeming wrote:
The Windows installer can be found at
http://wiki.lyx.org/uploads/Windows/LyX14x/lyx-1.4.1_win32_setup_v1.exe
Tracked down the glitch I previously saw in the configuration output
(which may well be harmless). It comes from line 482 in the configure
script, which leads off the hunt for tex2lyx (I think):
for ac_prog in "$PWD/../src/tex2lyx/tex2lyx -f \$\$i \$\$o" "tex2lyx$version_suffix
-f \$\$i \$\$o"
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog ; ac_word=$2
if test -n "$ac_word"; then
echo $ac_n "+checking for \"$ac_word\"""... $ac_c"
When this runs, I see
+checking for "/c/Program"...
Turns out this is the only place in the script that PWD is used. Its
value is /c/Program Files/LyX141/Resources, and the space apparently is
indigestible.
/Paul