sub conditionals_true_when (@@)

2001-06-13 Thread Kalle Olavi Niemitalo
In the Automake version I got today from the trunk of :pserver:[EMAIL PROTECTED]:/cvs/automake, automake/automake.in contains a subroutine which begins like this: sub conditionals_true_when (@@) { my (@conds, @whens) = @_; That isn't going to work: @conds consumes the entire list, and nothin

Re: sub conditionals_true_when (@@)

2001-06-13 Thread Kalle Olavi Niemitalo
Kalle Olavi Niemitalo <[EMAIL PROTECTED]> writes: > @conds consumes the entire list, and nothing is left to @whens. This bug is also causing the @TRUE@ conditions reported by Richard Boulton in "Bug with conditionals. [PATCH]".