Configure: use correct variable to infer the .ld file location
We didn't notice the error because it all happened in the top directory. Now that we use .ld files in subdirectories, the bug became apparent. Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/7347)
This commit is contained in:
parent
66a24ab868
commit
05a72c28b2
1 changed files with 1 additions and 1 deletions
|
@ -2079,7 +2079,7 @@ EOF
|
|||
} elsif ($s =~ /\.ld$/) {
|
||||
# We also recognise linker scripts (or corresponding)
|
||||
# We know they are generated files
|
||||
my $ld = cleanfile($buildd, $s, $blddir);
|
||||
my $ld = cleanfile($buildd, $_, $blddir);
|
||||
$unified_info{shared_sources}->{$ddest}->{$ld} = 1;
|
||||
} else {
|
||||
die "unrecognised source file type for shared library: $s\n";
|
||||
|
|
Loading…
Reference in a new issue