Search
j0ke.net Open Build Service
>
Projects
>
graphics
:
ImageMagick:6.9.1.10
>
automake
> automake-require_file.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File automake-require_file.patch of Package automake
--- bin/automake.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) Index: bin/automake.in =================================================================== --- bin/automake.in.orig 2015-01-05 20:25:55.000000000 +0100 +++ bin/automake.in 2015-02-10 12:06:26.983385721 +0100 @@ -7389,12 +7389,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; }