Tom Tromey <[EMAIL PROTECTED]> writes:
>
> I don't know when I'll fix the bug but it will definitely be before
> the next release.
The bandaid I'm using is below. It seems to work, but it'd be a
mistake to assume I know what I'm doing.
--- automake.in.old Fri Feb 2 06:29:06 2001
+++ automake.in Fri Feb 2 06:30:13 2001
@@ -3519,8 +3519,9 @@
local ($file, $local);
local (@inputs, @rewritten_inputs, $single);
local ($need_rewritten);
- foreach $file (@other_input_files)
+ foreach $file_ref (@other_input_files)
{
+ my $file = $file_ref . "";
if ($file =~ /^([^:]*):(.*)$/)
{
# This is the ":" syntax of AC_OUTPUT.
@@ -3568,7 +3569,7 @@
: '')
. ' CONFIG_HEADERS= $(SHELL) ./config.status'
. "\n");
- &push_dist_common (@inputs);
+ &push_dist_common (map {&basename($_)} @inputs);
push (@actual_other_files, $local);
# Require all input files.