Fix a typo found by codespell in a Makefile variable
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>
Tue, 9 May 2023 09:50:06 +0000 (11:50 +0200)
committerHugo Landau <hlandau@openssl.org>
Wed, 10 May 2023 17:32:58 +0000 (18:32 +0100)
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)

Configurations/windows-makefile.tmpl

index f9c58eae94f7b7dea7b37545b02b70a7d0d5e04b..9250b989ca20c8f9dfed09a1986ca1af83ceb390 100644 (file)
@@ -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 {