>>>>> "Kevin" == Kevin Ryde <[EMAIL PROTECTED]> writes:
>> I don't know when I'll fix the bug but it will definitely be before
>> the next release.
Kevin> The bandaid I'm using is below. It seems to work, but it'd be
Kevin> a mistake to assume I know what I'm doing.
I came up with a similar patch tonight. I'll be checking it in once I
investigate a regression.
Kevin> - foreach $file (@other_input_files)
Kevin> + foreach $file_ref (@other_input_files)
In the debugger I noticed the aliasing. Sigh.
Kevin> - &push_dist_common (@inputs);
Kevin> + &push_dist_common (map {&basename($_)} @inputs);
Actually you can just delete this line.
Tom