FYI: fix latent bug in handle_LIBOBJS

2006-06-06 Thread Alexandre Duret-Lutz
I'm checking this in. 2006-06-07 Alexandre Duret-Lutz <[EMAIL PROTECTED]> * automake.in (handle_LIBOBJS): Don't rely on the caller defining $1. Index: automake.in === RCS file: /cvs/automake/automake/automake.in,v retrievi

Re: Use AC_PROG_MKDIR_P

2006-06-06 Thread Alexandre Duret-Lutz
>>> "SK" == Stepan Kasal <[EMAIL PROTECTED]> writes: SK> Hello, SK> I believe AM_PROG_MKDIR_P can now be replaced by a thin wrapper SK> aroulnd AC_PROG_MKDIR_P. Is the following patch OK? SK> Have a nice day, SK> Stepan SK> 2006-06-02 Stepan Kasal <[EMAIL PROTECTED]> SK> * m4/mkdirp.m4

Re: Creating subdirs of distdir

2006-06-06 Thread Ralf Wildenhues
* Alexandre Duret-Lutz wrote on Tue, Jun 06, 2006 at 10:11:46PM CEST: > >>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: > RW> Updated patch below. What do you think? > > I'm leery of the escaping substitution to define the *strip > variables, Just curious, but why? > but let's go and

Re: IRIX compiler omits some dependencies with -MDupdate

2006-06-06 Thread Ralf Wildenhues
* Alexandre Duret-Lutz wrote on Tue, Jun 06, 2006 at 09:45:48PM CEST: > >>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: > > [...] > > RW> For lack of more knowledge, how about this check to diagnose and skip > RW> this depcomp method? This will make depcomp fall back to depmode > RW>

Re: Regenerating Automake's aclocal.m4

2006-06-06 Thread Ralf Wildenhues
* Alexandre Duret-Lutz wrote on Tue, Jun 06, 2006 at 09:43:17PM CEST: > >>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: > > RW> OK to apply? > > Yes. (In fact I have the very same patch in one of my tree; I > thought I had it applied long ago.) Done, thanks! Cheers, Ralf

Re: gettext-related test failures: config.rpath presence

2006-06-06 Thread Ralf Wildenhues
* Alexandre Duret-Lutz wrote on Tue, Jun 06, 2006 at 09:32:15PM CEST: > >>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: > > RW> OK? > > Yes, please. Thanks, applied. > RW> +if $ACLOCAL; then > RW> + > RW> + # autopoint will fail if it's from an older version. > RW> + # If gettext

Re: perl -i nonfunctional on MinGW

2006-06-06 Thread Ralf Wildenhues
Bonsoir Alexandre, * Alexandre Duret-Lutz wrote on Tue, Jun 06, 2006 at 09:20:09PM CEST: > >>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: > > RW> Welcome back Alexandre! > > Thanks, how did you know? :) Such a special date today... > RW> On MinGW, this happens: > >> + /bin/perl -pi

Re: AIX grep limitation: coreutils build failure

2006-06-06 Thread Ralf Wildenhues
Hi Alexandre, * Alexandre Duret-Lutz wrote on Tue, Jun 06, 2006 at 10:18:19PM CEST: > >>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: > RW> Automake patch: > RW> * m4/depout.m4 (_AM_OUTPUT_DEPENDENCY_COMMANDS): Do not use > RW> plain `grep' on the Makefile, as its line length may excee

Re: AIX grep limitation: coreutils build failure

2006-06-06 Thread Alexandre Duret-Lutz
>>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: [...] RW> Automake patch: RW> * m4/depout.m4 (_AM_OUTPUT_DEPENDENCY_COMMANDS): Do not use RW> plain `grep' on the Makefile, as its line length may exceed that RW> for grep. Bug report against coreutils by Sam Sirlin. Please install! [

Re: Creating subdirs of distdir

2006-06-06 Thread Alexandre Duret-Lutz
>>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: [...] RW> Updated patch below. What do you think? I'm leery of the escaping substitution to define the *strip variables, but let's go and see. [...] RW> + case $$dist_files in */*) \ RW> +( cd "$(distdir)"; \ RW> + $(mkdir_

Re: IRIX compiler omits some dependencies with -MDupdate

2006-06-06 Thread Alexandre Duret-Lutz
>>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: [...] RW> For lack of more knowledge, how about this check to diagnose and skip RW> this depcomp method? This will make depcomp fall back to depmode RW> `none', or `dashmstdout' (if --enable-dependency-tracking was given). Yes please.

Re: Regenerating Automake's aclocal.m4

2006-06-06 Thread Alexandre Duret-Lutz
>>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: RW> When you modify CVS Automake's configure.ac and then just run `make' RW> instead of rerunning `./bootstrap', there are spurious differences in RW> aclocal.m4 and the Makefile.in's, because RW> ...aclocal --acdir=m4 RW> is run instea

Re: aclocal --diff on Tru64

2006-06-06 Thread Alexandre Duret-Lutz
>>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: RW> `diff /dev/null file' fails on Tru64, as noted in autoconf.texi. RW> `aclocal --diff' invokes this. acloca18.test exposes this failure. RW> Below is a hack to fix this. It's a hack because it may create (and RW> delete) a file `dev

Re: gettext-related test failures: config.rpath presence

2006-06-06 Thread Alexandre Duret-Lutz
>>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: RW> CVS Automake diagnoses missing files mentioned in AC_REQUIRE_AUX_FILE RW> statements. AM_GNU_GETTEXT of gettext >= 0.14.3 causes config.rpath RW> to be required through this mechanism: >> + automake-1.9a --foreign -Werror -Wall --ad

Re: perl -i nonfunctional on MinGW

2006-06-06 Thread Alexandre Duret-Lutz
>>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: RW> Welcome back Alexandre! Thanks, how did you know? :) RW> On MinGW, this happens: >> + /bin/perl -pi -e 's/#: //' configure.in >> Can't do inplace edit on configure.in: Permission denied. No kidding ! RW> So here's a patch to repl

Re: automake/483: "missing" doesn't handle "--output" for missing makeinfo

2006-06-06 Thread Alexandre Duret-Lutz
>>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: [...] >> You should write "PR automake/483" fully so it get caught by the >> gnats filters. RW> Do they match PR\nautomake..? (I rewrote the entry to not have that.) No idea. I'd guess not. [...] -- Alexandre Duret-Lutz Shared book

Re: pr401*.test and BSD make: computing LIBOBJDIR

2006-06-06 Thread Alexandre Duret-Lutz
>>> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: adl> I'll try to look at this and the rewrite of depout later this week-end Ahem... I had a very long week. (Does that sound credible?) Sorry about that. >>> "RW" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: RW> 1) RW> On alph