]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix quotes install_fips in Configurations/windows-makefile.tmpl
authorRichard Levitte <levitte@openssl.org>
Tue, 26 Jul 2022 17:38:02 +0000 (19:38 +0200)
committerHugo Landau <hlandau@openssl.org>
Thu, 28 Jul 2022 09:08:51 +0000 (10:08 +0100)
Directories and file names with spaces require quoting...  again

Fixes #18880

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18881)

Configurations/windows-makefile.tmpl

index 300b6f16ede536978f472514ba57ec9d7cd68cb3..dcf83a516a4d8922c6f5ae1fb11883042008d7ce 100644 (file)
@@ -500,8 +500,8 @@ uninstall_docs: uninstall_html_docs
 {- output_off() if $disabled{fips}; "" -}
 install_fips: build_sw $(INSTALL_FIPSMODULECONF)
 #      @[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
-       @$(PERL) $(SRCDIR)\util\mkdir-p.pl $(MODULESDIR)
-       @$(PERL) $(SRCDIR)\util\mkdir-p.pl $(OPENSSLDIR)
+       @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(MODULESDIR)"
+       @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)"
        @$(ECHO) "*** Installing FIPS module"
        @$(ECHO) "install $(INSTALL_FIPSMODULE) -> $(MODULESDIR)\$(FIPSMODULENAME)"
        @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(INSTALL_FIPSMODULE)" "$(MODULESDIR)"