Hi Angus, * Angus Leeming wrote on Tue, Jan 17, 2006 at 11:10:01AM CET: > > Making all in qdvi > make[2]: Entering directory > `/home/angus/qdvi/trunk/build/qdvi-4.0cvs/_build/qdvi' > if cmp -s version.cpp-tmp version.cpp ; then \ > : ;\ > else \ > rm -f version.cpp ;\ > cp version.cpp-tmp version.cpp ;\ > fi > echo timestamp > stamp-version > kdelibs/kconfig_compiler ../../qdvi/kviewshell.kcfg ../../qdvi/kvsprefs.kcfgc > make[2]: kdelibs/kconfig_compiler: Command not found
Have you ever done a VPATH build? mkdir build cd build ../qdvi/configure [...] make If that fails, start using $(srcdir), $(top_srcdir), $(builddir), $(top_builddir) to your Makefile.am rules as appropriate. (There are more variables, but those are the ones you'll need most likely, I haven't looked at your problem otherwise.) Once that works, try make dist in there. Cheers, Ralf