>>>>> "Mark" == Mark E <[EMAIL PROTECTED]> writes:
>> There is one effect I don't understand well in fact: that of
>> AC_PATH_PROG. You now let Autoconf accept PERL=a:relative/to/perl
>> where before it required PERL=a:/absolute/to/perl. Why is it so?
Mark> One reason is to avoid the second case in AC_PATH_PROG which
Mark> searches the path by setting IFS=":".
Mark> This is a big problem when PATH contains drive letters.
Hm, I miss a point here: I don't quite understand how it relates with
AC_PATH_PROG since this macro considers the absolute/relative thing
only when checking the envvar that should point to the tool (e.g.,
PERL=/usr/bin/perl).
I can imagine there is a problem with IFS=: to split the PATH, but I
don't quite understand how your patch improves the situation.
Akim