From a08f31b60affa9ed494dec76d171d9d500a3eaa4 Mon Sep 17 00:00:00 2001 From: Martin Rauch Date: Fri, 25 Apr 2025 10:30:16 +0200 Subject: [PATCH] Added quotes to mask spaces in the path when building Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/27495) (cherry picked from commit 978a4e199d60b8616180128c5d709d9600409113) --- Configurations/unix-Makefile.tmpl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index e85763ccf83..a6f666957ec 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -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 -- 2.47.2