Re: unquote-am_config_header.patch

2001-02-16 Thread Tom Tromey
> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: adl> 2001-01-18 Alexandre Duret-Lutz <[EMAIL PROTECTED]> adl>* automake.in (scan_one_configure_file): Unquote AC_CONFIG_AUX_DIR's adl>argument. I checked this in. Tom

Re: unquote-am_config_header.patch

2001-02-16 Thread Tom Tromey
> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: adl> 2001-01-17 Alexandre Duret-Lutz <[EMAIL PROTECTED]> adl>* automake.in (unquote_m4_arg): New function. adl>(scan_one_configure_file): Call unquote_m4_arg on adl>AM_CONFIG_HEADER argument, so that AM_CONFIG_HEADER([f

Re: unquote-am_config_header.patch

2001-01-22 Thread Alexandre Duret-Lutz
>>> "Tom" == Tom Tromey <[EMAIL PROTECTED]> writes: >> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: [...] adl> + # don't count orphan right brackets adl> + $depth = 0 if $depth < 0; Tom> How important is this? Peanut. But since I was going to mimic m4, it doesn

Re: unquote-am_config_header.patch

2001-01-21 Thread Tom Tromey
> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: adl> AM_CONFIG_HEADER([config.h]) adl> May I suggest the change below? (I browsed the source and didn't adl> find something similar to unquote_m4_arg, that's quite adl> surprising; did I missed something?) This looks good to me.

Re: unquote-am_config_header.patch

2001-01-19 Thread Alexandre Duret-Lutz
>>> "Lars" == Lars J Aas <[EMAIL PROTECTED]> writes: [...] Lars> You will also find that Lars> AC_CONFIG_AUX_DIR([cfg]) Lars> won't fly according to automake... 2001-01-18 Alexandre Duret-Lutz <[EMAIL PROTECTED]> * automake.in (scan_one_configure_file): Unquote AC_CONFIG_AUX_DIR's

Re: unquote-am_config_header.patch

2001-01-18 Thread Lars J. Aas
On Thu, Jan 18, 2001 at 09:35:44AM +0100, Alexandre Duret-Lutz wrote: : Hi, : : I'm afraid this : : AM_CONFIG_HEADER([config.h]) : : leads to : : configure.in: 3: required file `./[config.h].in' not found You will also find that AC_CONFIG_AUX_DIR([cfg]) won't fly according to automake

unquote-am_config_header.patch

2001-01-18 Thread Alexandre Duret-Lutz
Hi, I'm afraid this AM_CONFIG_HEADER([config.h]) leads to configure.in: 3: required file `./[config.h].in' not found May I suggest the change below? (I browsed the source and didn't find something similar to unquote_m4_arg, that's quite surprising; did I missed something?) 2001-01-17