From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 9 May 2023 09:50:06 +0000 (+0200) Subject: Fix a typo found by codespell in a Makefile variable X-Git-Tag: openssl-3.2.0-alpha1~897 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5a054b7fcafc98a1dbf4358da390dc6e7759de5;p=thirdparty%2Fopenssl.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 Reviewed-by: Paul Dale Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/20911) --- diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl index f9c58eae94f..9250b989ca2 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 {