summaryrefslogtreecommitdiffstats
path: root/Configurations/windows-makefile.tmpl
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2020-08-17 12:34:17 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-08-17 23:35:49 +1000
commit6c4e2e52d87d61a6df3ddf5f67c7207387585d6c (patch)
treeaf159ba0c3f7c271c48c9179ad9f4661fb7a21f0 /Configurations/windows-makefile.tmpl
parentbfa6aaab45c30ced2da851ee92f8ac5942f08078 (diff)
Fix broken windows builds.
A miscellaneous '\' was accidently added to set FIPSKEY=$(FIPSKEY) which was causing some external CI build loops to not produce test results. It looks like it was accidently copied from the unix variant which requires the '\'. Thanks to Wolfgang Beck for tracking down the issue. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12661)
Diffstat (limited to 'Configurations/windows-makefile.tmpl')
-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 c2507a6508..dfabda7eef 100644
--- a/Configurations/windows-makefile.tmpl
+++ b/Configurations/windows-makefile.tmpl
@@ -406,7 +406,7 @@ test: tests
set SRCTOP=$(SRCDIR)
set BLDTOP=$(BLDDIR)
set PERL=$(PERL)
- set FIPSKEY=$(FIPSKEY) \
+ set FIPSKEY=$(FIPSKEY)
"$(PERL)" "$(SRCDIR)\test\run_tests.pl" $(TESTS)
@{- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
@$(ECHO) "Tests are not supported with your chosen Configure options"