On Thu, Nov 30, 2000 at 01:43:27PM +0100, Rainer Hoffmann wrote:
> pdflatex is (finally) installed on my system. (i.e. when I type pdflatex
> at the command line, it starts up). Now when I click on View->PDF
> (Pdflatex) I get the following messages in the terminal, where I started
> lyx
>
> Converting from latex to pdf2
> Running none
> sh: none: command not found
> Executing command: acroread test.pdf
>
> What's wrong?
Select Edit->reconfigure from the menu, and restart LyX.
Note for developers:
I don't know why he gets the pdf(pdflatex) option in the menu, since his
latex->pdf2 converter is "none" and in lyxrc.C we have
case RC_CONVERTER: {
...
if (command.empty() || command == "none")
converters.Delete(from, to);
else
converters.Add(from, to, command, flags);
break;
}
Anyone have an idea ?
(when I set the latex->pdf2 converter to "none" in lyxrc.default, I do not
get a pdf(pdflatex) option in the view menu.