This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
90-errdir.patch
- To: Automake <automake at gnu dot org>
- Subject: 90-errdir.patch
- From: Akim Demaille <akim at epita dot fr>
- Date: Thu, 01 Mar 2001 01:04:53 +0100
- List-Id: Discussion list for automake <automake.gnu.org>
Index: ChangeLog
from Akim Demaille <akim@epita.fr>
* automake.in (&require_file_internal): $errfile must be
independent from the loop on the directories.
Index: automake.in
--- automake.in Wed, 28 Feb 2001 23:04:21 +0100 akim (am/f/39_automake.i 1.97 755)
+++ automake.in Wed, 28 Feb 2001 23:05:40 +0100 akim (am/f/39_automake.i 1.97 755)
@@ -7373,6 +7373,7 @@ sub require_file_internal
foreach my $file (@files)
{
my $fullfile;
+ my $errdir;
my $errfile;
my $save_dir;
@@ -7384,7 +7385,6 @@ sub require_file_internal
my $dangling_sym = 0;
foreach my $dir (@require_file_paths)
{
- my $errdir;
if ($dir eq '.')
{
$fullfile = $relative_dir . "/" . $file;