Fix broken windows builds.
authorShane Lontis <shane.lontis@oracle.com>
Mon, 17 Aug 2020 02:34:17 +0000 (12:34 +1000)
committerShane Lontis <shane.lontis@oracle.com>
Mon, 17 Aug 2020 13:35:49 +0000 (23:35 +1000)
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)

Configurations/windows-makefile.tmpl

index c2507a6508fd527fcb2c7a74f8349d959b13f5f0..dfabda7eef3eb70b2d11aa17b698d042e9b6a9f2 100644 (file)
@@ -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"