mirror of https://github.com/openssl/openssl.git
Fix a typo found by codespell in a Makefile variable
I have no experience with building on Windows, so I don't know the effect of fixing this typo. I guess that this will fix a bug at worst. CLA: trivial Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20911)
This commit is contained in:
parent
2913b5c09f
commit
e5a054b7fc
|
|
@ -765,7 +765,7 @@ EOF
|
||||||
my $generator;
|
my $generator;
|
||||||
if ($gen0 =~ /\.pl$/) {
|
if ($gen0 =~ /\.pl$/) {
|
||||||
$generator = '"$(PERL)"'.$gen_incs.' "'.$gen0.'"'.$gen_args
|
$generator = '"$(PERL)"'.$gen_incs.' "'.$gen0.'"'.$gen_args
|
||||||
.' "$(PERLASM_SCHEME)"'.$incs.' '.$cppflags.$defs.' $(PROCESSSOR)';
|
.' "$(PERLASM_SCHEME)"'.$incs.' '.$cppflags.$defs.' $(PROCESSOR)';
|
||||||
} elsif ($gen0 =~ /\.S$/) {
|
} elsif ($gen0 =~ /\.S$/) {
|
||||||
$generator = undef;
|
$generator = undef;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue