Re: A small test case for the AC_CONFIG_xxx problem

2001-06-20 Thread Akim Demaille
> "Paolo" == Paolo Bonzini <[EMAIL PROTECTED]> writes: Paolo> The other bug is that `./config.status test3' won't work, while Paolo> `CONFIG_LINKS=test3 ./config.status' or simply Paolo> `./config.status' will. Arg, now it is much clearer to me, thanks! That's what I missed. Paolo> Note

Re: A small test case for the AC_CONFIG_xxx problem

2001-06-20 Thread Paolo Bonzini
| echo > test1 | testsrc=test1 | testdest=test2 | AC_CONFIG_LINKS($testdest:test1 test3:$testsrc, [], | [testsrc=$testsrc |testdest=$testdest]) > I.e., test3 is OK, but not test1. There are two parts in it. One bug is this controversial use of AC_CONFIG_LINKS, which I only introduced for

Re: A small test case for the AC_CONFIG_xxx problem

2001-06-19 Thread Akim Demaille
| AC_PREREQ(2.50) | AC_INIT | AC_CONFIG_SRCDIR([configure.ac]) | | echo > test1 | testsrc=test1 | testdest=test2 | AC_CONFIG_LINKS($testdest:test1 test3:$testsrc, [], | [testsrc=$testsrc |testdest=$testdest]) | | AC_OUTPUT Ah, now I understand. Well, it seems to me we are not referring