Rework build: small correction in unix-Makefile.tmpl
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8162)
This commit is contained in:
parent
fb82cbfe3d
commit
dff298135b
1 changed files with 1 additions and 1 deletions
|
@ -1194,7 +1194,7 @@ EOF
|
|||
push @linkdirs, $d unless grep { $d eq $_ } @linkdirs;
|
||||
}
|
||||
my $linkflags = join("", map { "-L$_ " } @linkdirs);
|
||||
my $linklibs = join("", map { if ($_ =~ s/\.a$//) {
|
||||
my $linklibs = join("", map { if ($_ =~ m/\.a$/) {
|
||||
" ".platform->staticlib($_);
|
||||
} else {
|
||||
my $f = basename($_);
|
||||
|
|
Loading…
Reference in a new issue