Re: automake + .info files help needed

2008-11-02 Thread Matěj Týč
> First, do you build in-tree (./configure ...) or out-of-tree > (../path/to/configure ...)? I usually build in-tree and make distcheck build out-of-tree. Never came across an .info file, though (I have used find -name "*.info" as told below) > Second, if you > find $top_srcdir $top_builddir -na

Re: automake + .info files help needed

2008-11-02 Thread Ralf Wildenhues
* Matěj Týč wrote on Sun, Nov 02, 2008 at 05:45:59PM CET: > > Please just post all of the output, it is often much easier for me to > > see then what went wrong. > OK, you have asked for it :-) I send output of 'make distcheck' and > 'automake --verbose' zipped in the attachment Thanks. The error

Re: automake + .info files help needed

2008-11-02 Thread Matěj Týč
> Please just post all of the output, it is often much easier for me to > see then what went wrong. OK, you have asked for it :-) I send output of 'make distcheck' and 'automake --verbose' zipped in the attachment Unfortunately, it is not a simple foo project... > The info file should have been bu

Re: Define a complete rule via autoconf (quoting issue, AC_SUBST)

2008-11-02 Thread Ralf Wildenhues
Hello Daniel, re. the part that has not been addressed yet: * Daniel Leidert wrote on Sat, Nov 01, 2008 at 11:21:11PM CET: > > schemas_DATA = `echo "$(schemas_in_files)" | sed > 's/.schemas.in$$//;$(transform);s/$$/.schemas/'` > > Running the install target fails, because the installation rule

Re: automake + .info files help needed

2008-11-02 Thread Ralf Wildenhues
Hi Bruce, * Bruce Korb wrote on Sun, Nov 02, 2008 at 05:16:06PM CET: > Ralf Wildenhues wrote: >> Please just post all of the output, it is often much easier for me to >> see then what went wrong. > Okay, here's my (I'd guess different) problem. Beats me. :( Yes, that's most definitely a differ

Re: automake + .info files help needed

2008-11-02 Thread Bruce Korb
Ralf Wildenhues wrote: Please just post all of the output, it is often much easier for me to see then what went wrong. Hi Ralf, Okay, here's my (I'd guess different) problem. Beats me. :( Thanks for any hints! :) Cheers - Bruce Making dvi in doc make[2]: Entering directory `/home/bkorb/ag/a

Re: automake + .info files help needed

2008-11-02 Thread Ralf Wildenhues
* Matěj Týč wrote on Sun, Nov 02, 2008 at 12:26:13PM CET: > > > > Please post the output of 'make distcheck', and state which automake > > version you're using. Thanks. > I use automake (GNU automake) 1.10.1 > > make distcheck just complains that it can't find the foo.info file so it > can't ins

Re: automake + .info files help needed

2008-11-02 Thread Matěj Týč
Thank you very much for your quick reply, > > Please post the output of 'make distcheck', and state which automake > version you're using. Thanks. I use automake (GNU automake) 1.10.1 make distcheck just complains that it can't find the foo.info file so it can't install it (or at least it seems

Re: automake + .info files help needed

2008-11-02 Thread Ralf Wildenhues
Hello Matěj, * Matěj Týč wrote on Sun, Nov 02, 2008 at 12:01:35PM CET: > I use Texinfo to document my project and I have a foo.texi file in doc/ > subdirectory. > I have these lines in the doc/Makefile.am: > > info_TEXINFOS = foo.texi > > EXTRA_DIST = images/foo1.png etc. > > I also have the d

automake + .info files help needed

2008-11-02 Thread Matěj Týč
Hello, I use Texinfo to document my project and I have a foo.texi file in doc/ subdirectory. I have these lines in the doc/Makefile.am: info_TEXINFOS = foo.texi EXTRA_DIST = images/foo1.png etc. I also have the doc/ directory and makefile "registered" in root Makefile.am and in configure.ac ma

Re: Define a complete rule via autoconf (quoting issue, AC_SUBST)

2008-11-02 Thread Paolo Bonzini
> I get errors running ./configure. I guess, this is, because of a problem > with the quotation. Doing a simple: > > AC_SUBST([DESKTOP_DATA_RULE], [ > target: requirements > @list=... > > ]) DESKTOP_DATA_RULE="AS_ESCAPE([ ... ])" AC_SUBST([DESKTOP_DATA_RULE]) should work. Paolo