summaryrefslogtreecommitdiffstats
path: root/Configurations
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-05-09 11:50:06 +0200
committerHugo Landau <hlandau@openssl.org>2023-05-10 18:33:41 +0100
commit259c7f61e6273c5bb23c99b7e132dcb4a017ce28 (patch)
tree50c6e185e65215b8e038c8c51dc965934bf59f60 /Configurations
parent1406ba5802f2dfd34ed97ffc60a506fa745b50d2 (diff)
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) (cherry picked from commit e5a054b7fcafc98a1dbf4358da390dc6e7759de5)
Diffstat (limited to 'Configurations')
-rw-r--r--Configurations/windows-makefile.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl
index 5d41af41bc..b8a1abc8f4 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 {