Rainer Dorsch <[EMAIL PROTECTED]> writes: > I retried not to compile lyx 1.4.2 with QT 3.3 and got another compile issue: > No such file or directory: opening dependency file > .deps/ui/QRefDialogBase.Tpo > Any ideas what is going wrong here?
Looks like configure and make have got confused about the (non-)existence of these generated dependency files. If you're building in a separate build tree to your source tree (you really should be) then fixing is as simple as: rmdir build mkdir build sh ./autogen.sh cd build ../configure [your options] make from the top level LyX directory. Otherwise you should probably try out "make maintainer-clean" followed by "sh ./autogen.sh" etc. Angus