[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Autoconf testsuite and cross setups
From: |
Paul Eggert |
Subject: |
Re: Autoconf testsuite and cross setups |
Date: |
Mon, 02 Apr 2007 17:30:43 -0700 |
User-agent: |
Gnus/5.1008 (Gnus v5.10.8) Emacs/21.4 (gnu/linux) |
Ralf Wildenhues <address@hidden> writes:
> Where should I write documentation beside NEWS? HACKING
> only would seem a bit thin, no?
Ideally it'd be in the documentation, yes. Sorry, I don't have a
precise suggestion.
> +AT_CHECK([echo Hello | top_srcdir=$abs_top_srcdir ./configure
> $configure_options | grep -v 'configure: loading site script '],, [Hello
This always does globbing on $configure_options, which means we can't
reliably support arbitrary characters. How about doing this instead?
AT_CHECK([echo Hello | eval "top_srcdir=\$abs_top_srcdir ./configure
$configure_options" | grep -v 'configure: loading site script '],, [Hello
and similarly for the other uses of $configure_options.