> "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
| 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
| 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