]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Added quotes to mask spaces in the path when building
authorMartin Rauch <Martin.MA.Rauch@bmw.de>
Fri, 25 Apr 2025 08:30:16 +0000 (10:30 +0200)
committerTomas Mraz <tomas@openssl.org>
Mon, 28 Apr 2025 15:30:55 +0000 (17:30 +0200)
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/27495)

(cherry picked from commit 978a4e199d60b8616180128c5d709d9600409113)

Configurations/unix-Makefile.tmpl

index e85763ccf8351df33880ac4aeae61751f8132cee..a6f666957ec05325783527d133fe664b70a5701c 100644 (file)
@@ -135,7 +135,7 @@ GENERATED_PODS={- # common0.tmpl provides @generated
                        fill_lines(" ", $COLUMNS - 15,
                                   map { my $x = $_;
                                         (
-                                          grep { 
+                                          grep {
                                                  $unified_info{attributes}->{depends}
                                                  ->{$x}->{$_}->{pod} // 0
                                                }
@@ -809,12 +809,12 @@ install_dev: install_runtime_libs
                cp $$e "$(DESTDIR)$(PKGCONFIGDIR)/$$fn"; \
                chmod 644 "$(DESTDIR)$(PKGCONFIGDIR)/$$fn"; \
        done
-       @$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(CMAKECONFIGDIR)
+       @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(CMAKECONFIGDIR)"
        @for e in $(INSTALL_EXPORTERS_CMAKE); do \
                fn=`basename $$e`; \
                $(ECHO) "install $$e -> $(DESTDIR)$(CMAKECONFIGDIR)/$$fn"; \
-               cp $$e $(DESTDIR)$(CMAKECONFIGDIR)/$$fn; \
-               chmod 644 $(DESTDIR)$(CMAKECONFIGDIR)/$$fn; \
+               cp $$e "$(DESTDIR)$(CMAKECONFIGDIR)/$$fn"; \
+               chmod 644 "$(DESTDIR)$(CMAKECONFIGDIR)/$$fn"; \
        done
 
 uninstall_dev: uninstall_runtime_libs