Georg Baum <[EMAIL PROTECTED]> writes:
>
> Jean-Pierre Chrétien wrote:
>
> It is fixed by the attached patch. Can you try that please? I could not
> reproduce any other problem than the relative path. If there are still
> problems after applying the patch, could you describe them again?
I get this:
Converting main.tex and dependant files to lyx format 241...
Ignoring options 'T1' of package fontenc.
Exiting...
and there is no mail.lyx file created.
But now chapters/code.lyx is correct :-)
\begin_inset Include \verbatiminput{../tex2lyx.sh}
So to check again, here is a very simplified example built in the shell
#!/bin/sh
cat > main.tex <<EOF
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\begin{document}
\include{intro}
\end{document}
EOF
cat > intro.tex <<EOF
\section{Introduction}
Blah blah blah
EOF
- fails as shown above with the 45071 patch
- produces \begin_inset Include \include{intro.tex}
with the current cvs version
--
Jean-Pierre