Re: error in mutt-1.5.8

2005-03-10 Thread Stepan Kasal
Hello, [This is an Automake question, cc'ing the automake list.] On Fri, Mar 11, 2005 at 02:12:47PM -0300, Hema K wrote: > in mutt-1.5.8 when i do "aclocal" > i am getting lot of warnings. [...] > /usr/local/share/aclocal/strtod.m4:30: warning: underquoted definition of > AM_FUNC_STRTOD [...]

Re: Automake feature request

2005-03-10 Thread Ben Elliston
Hi Ralf Either use make -s LIBTOOLFLAGS=--silent or configure LIBTOOLFLAGS=--silent or some nice hack to enable this automatically in configure.ac mentioned in the discussion at that time[1]. Thanks. That's probably good enough. Cheers, Ben signature.asc Description: OpenPGP digital signatur

Re: builddir vs. srcdir

2005-03-10 Thread Paul Pogonyshev
> Hi, > > On Wed, Mar 09, 2005 at 11:21:35PM +0200, Paul Pogonyshev wrote: > > > And I'd like to suggest that you use SUFFIXES to handle the .list > > > source. Please look at the following example: > > > > Well, my generator is even more non-standard, since I need to pass an > > additional comma

Re: builddir vs. srcdir

2005-03-10 Thread Paul Pogonyshev
Alexandre Duret-Lutz wrote: > >>> "Paul" == Paul Pogonyshev <[EMAIL PROTECTED]> writes: > > Paul> Stepan Kasal wrote: > >> Hello, > >> > >> On Tue, Mar 08, 2005 at 11:56:56PM +0200, Paul Pogonyshev wrote: > >> > because the generated sources are placed into the build directory, > >> > while `

Re: I: adjust test suite for upcoming GNU Make 3.83

2005-03-10 Thread Paul Smith
%% "Dmitry V. Levin" <[EMAIL PROTECTED]> writes: dvl> Upcoming version of GNU Make introduces new incompatibility. dvl> The NEWS file says: dvl> * WARNING: Backward-incompatibility! dvl> GNU make now implements a generic "second expansion" feature on the dvl> prerequisites of both ex

I: adjust test suite for upcoming GNU Make 3.83

2005-03-10 Thread Dmitry V. Levin
Hi, Upcoming version of GNU Make introduces new incompatibility. The NEWS file says: * WARNING: Backward-incompatibility! GNU make now implements a generic "second expansion" feature on the prerequisites of both explicit and implicit (pattern) targets. After the rule has been parsed, the pr

Re: builddir vs. srcdir

2005-03-10 Thread Alexandre Duret-Lutz
>>> "Harald" == Harald Dunkel <[EMAIL PROTECTED]> writes: Harald> Whats about a more general case http://sources.redhat.com/automake/automake.html#Multiple-Outputs -- Alexandre Duret-Lutz

Re: builddir vs. srcdir

2005-03-10 Thread Stepan Kasal
Hi, On Wed, Mar 09, 2005 at 11:21:35PM +0200, Paul Pogonyshev wrote: > > And I'd like to suggest that you use SUFFIXES to handle the .list > > source. Please look at the following example: > > Well, my generator is even more non-standard, since I need to pass an > additional command-line paramet

Re: Automake feature request

2005-03-10 Thread Ralf Wildenhues
Hi Ben, * Ben Elliston wrote on Wed, Mar 09, 2005 at 03:41:46AM CET: > I approached the Libtool maintainers with this request, who convinced > me that Automake was the right place to implement this. I would like > Automake-generated Makefiles to pass --quiet to libtool when make is > invoked with

Re: builddir vs. srcdir

2005-03-10 Thread Ralf Wildenhues
* Harald Dunkel wrote on Thu, Mar 10, 2005 at 09:27:34AM CET: > Stepan Kasal wrote: > >On Tue, Mar 08, 2005 at 11:56:56PM +0200, Paul Pogonyshev wrote: > > > >>foo.c foo.h : $(srcdir)/foo.list $(PARSE_LIST) > >>$(PARSE_LIST) $(srcdir)/foo.list foo.h foo.c\ > >> || (rm -f foo.c foo.h ;

Re: builddir vs. srcdir

2005-03-10 Thread Harald Dunkel
Stepan Kasal wrote: Hello, On Tue, Mar 08, 2005 at 11:56:56PM +0200, Paul Pogonyshev wrote: foo.c foo.h : $(srcdir)/foo.list $(PARSE_LIST) $(PARSE_LIST) $(srcdir)/foo.list foo.h foo.c\ || (rm -f foo.c foo.h ; exit 1) This rule can break with parallel make. You can solve the