Paul A. Rubin <[EMAIL PROTECTED]> writes:
Paul> Tracked down the glitch I previously saw in the
Paul> configuration output (which may well be harmless).
Paul> It comes from line 482 in the configure 
Paul> script, which leads off the hunt for tex2lyx (I think):

Paul> for ac_prog in "$PWD/../src/tex2lyx/tex2lyx -f \$\$i \$\$o" \
Paul>                "tex2lyx$version_suffix -f \$\$i \$\$o"

Paul> Turns out this is the only place in the script
Paul> that PWD is used.  Its value is
Paul> /c/Program Files/LyX141/Resources, and the space
Paul> apparently is indigestible.

That's a great piece of detective work Paul.
Yes, the space here *is* indigestible.

Guys, the test will need to be rewritten as:

PATHORIG="$PATH"
PATH="$PWD/../src/tex2lyx:$PATH"
export PATH

for ac_prog in 'tex2lyx -f $$i $$o' \
               'tex2lyx'"$version_suffix"' -f $$i $$o'
do
  ...
done

PATH="$PATHORIG"
export PATH
unset PATHORIG

Paul, could you test?

Regards,
Angus

Reply via email to