forked from pool/automake
ff0f7b1a38
OBS-URL: https://build.opensuse.org/request/show/505189 OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/automake?expand=0&rev=57
25 lines
707 B
Diff
25 lines
707 B
Diff
---
|
|
bin/automake.in | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
Index: automake-1.15.1/bin/automake.in
|
|
===================================================================
|
|
--- automake-1.15.1.orig/bin/automake.in
|
|
+++ automake-1.15.1/bin/automake.in
|
|
@@ -7393,12 +7393,14 @@ sub required_file_check_or_copy
|
|
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;
|
|
}
|