From e5a054b7fcafc98a1dbf4358da390dc6e7759de5 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 9 May 2023 11:50:06 +0200 Subject: [PATCH] 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) --- Configurations/windows-makefile.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.47.2