]> 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:37 +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)

Configurations/unix-Makefile.tmpl

index b67172381311ba332d0412bb8049ba86ffcbf794..1fc14475d77eaf880b9e7b6e689215c1ee80f401 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
                                                }
@@ -813,12 +813,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