2003-09-07 Alexandre Duret-Lutz <adl@gnu.org>
+ * aclocal.in (add_file): Remove useless filling of $output, probably
+ left a after CVS conflict. This code is now in write_aclocal.
+
* aclocal.in (configure_ac): Do not call require_configure_ac
before parsing the options.
* automake.in (configure_ac): Likewise.
my $mtime = mtime $file;
$greatest_mtime = $mtime if $greatest_mtime < $mtime;
- # If the file to add looks like path outside the project,
- # copy it to the output.
- # The regex catches filenames starting with things like
- # / \ c:\ ../ ./../ etc.
- if ($file =~ m,^(?:(?:\w:)?[\\/]|(?:\.[\\/]+)*\.\.[\\/]),)
- {
- $output .= $file_contents{$file} . "\n";
- }
- else
- {
- # Otherwise, simply include the file.
- $output .= "m4_include([$file])\n";
- }
my (@rlist);
foreach (split ("\n", $file_contents{$file}))
{