diff options
author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2023-05-09 11:50:06 +0200 |
---|---|---|
committer | Hugo Landau <hlandau@openssl.org> | 2023-05-10 19:32:58 +0200 |
commit | e5a054b7fcafc98a1dbf4358da390dc6e7759de5 (patch) | |
tree | 9e846926d46f4bb0e44059b12223d1d77bb57bd9 /Configurations/windows-makefile.tmpl | |
parent | DLTS → DTLS (diff) | |
download | openssl-e5a054b7fcafc98a1dbf4358da390dc6e7759de5.tar.xz openssl-e5a054b7fcafc98a1dbf4358da390dc6e7759de5.zip |
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)
Diffstat (limited to '')
-rw-r--r-- | Configurations/windows-makefile.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl index f9c58eae94..9250b989ca 100644 --- a/Configurations/windows-makefile.tmpl +++ b/Configurations/windows-makefile.tmpl @@ -765,7 +765,7 @@ EOF my $generator; if ($gen0 =~ /\.pl$/) { $generator = '"$(PERL)"'.$gen_incs.' "'.$gen0.'"'.$gen_args - .' "$(PERLASM_SCHEME)"'.$incs.' '.$cppflags.$defs.' $(PROCESSSOR)'; + .' "$(PERLASM_SCHEME)"'.$incs.' '.$cppflags.$defs.' $(PROCESSOR)'; } elsif ($gen0 =~ /\.S$/) { $generator = undef; } else { |