2009-08-28 17:50:33 +02:00
|
|
|
Index: automake.in
|
|
|
|
===================================================================
|
|
|
|
--- automake.in.orig
|
2006-12-19 00:15:10 +01:00
|
|
|
+++ automake.in
|
2009-08-28 17:50:33 +02:00
|
|
|
@@ -7768,12 +7768,14 @@ sub require_file_internal ($$$@)
|
2006-12-19 00:15:10 +01:00
|
|
|
my $fullfile = "$dir/$file";
|
|
|
|
my $found_it = 0;
|
|
|
|
my $dangling_sym = 0;
|
|
|
|
+ my $thisdir = dirname ($fullfile);
|
|
|
|
+ my $thisfile = basename ($fullfile);
|
|
|
|
|
|
|
|
if (-l $fullfile && ! -f $fullfile)
|
|
|
|
{
|
|
|
|
$dangling_sym = 1;
|
|
|
|
}
|
|
|
|
- elsif (dir_has_case_matching_file ($dir, $file))
|
|
|
|
+ elsif (dir_has_case_matching_file ($thisdir, $thisfile))
|
|
|
|
{
|
|
|
|
$found_it = 1;
|
|
|
|
maybe_push_required_file ($dir, $file, $fullfile);
|