summaryrefslogtreecommitdiffstats
path: root/Configurations/windows-makefile.tmpl
diff options
context:
space:
mode:
authorDr. Matthias St. Pierre <matthias.st.pierre@ncp-e.com>2020-12-15 22:44:32 +0100
committerDr. Matthias St. Pierre <matthias.st.pierre@ncp-e.com>2021-04-29 11:26:57 +0200
commitc3bda8a2e0d51a8be2c2c0afc673048bc9457dcd (patch)
tree0fa38113a62d36ffb0752a642cb4dd4bf6694454 /Configurations/windows-makefile.tmpl
parentb6821df0d0713e05af338f5a7dba51a63f2c79b9 (diff)
Configure/Makefile: correct the FIPS module configuration file path
According to the OpenSSL 3.0 Wiki, the file should be located at $(DESTDIR)$(OPENSSLDIR)/fipsmodule.cnf next to the openssl.cnf file. Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13684)
Diffstat (limited to 'Configurations/windows-makefile.tmpl')
-rw-r--r--Configurations/windows-makefile.tmpl5
1 files changed, 2 insertions, 3 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl
index 6e0dd35674..3b08b6dd29 100644
--- a/Configurations/windows-makefile.tmpl
+++ b/Configurations/windows-makefile.tmpl
@@ -475,13 +475,12 @@ install_fips: install_sw
@$(ECHO) "fipsinstall $(MODULESDIR)\$(FIPSMODULENAME).cnf"
@$(PERL) "$(BLDDIR)\util\wrap.pl" "$(BLDDIR)\apps\openssl" fipsinstall \
-module "$(MODULESDIR)\$(FIPSMODULENAME)" \
- -out "$(MODULESDIR)\$(FIPSMODULENAME).cnf" \
+ -out "$(OPENSSLDIR)\fipsmodule.cnf" \
-macopt "hexkey:$(FIPSKEY)"
uninstall_fips: uninstall_sw
@$(ECHO) "*** Uninstalling FIPS module configuration"
- @$(ECHO) "$(RM) $(MODULESDIR)\$(FIPSMODULENAME).cnf"
- @$(RM) "$(MODULESDIR)\$(FIPSMODULENAME).cnf"
+ $(RM) "$(OPENSSLDIR)\fipsmodule.cnf"
install_ssldirs:
@"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)\certs"