From: Martin Rauch Date: Fri, 25 Apr 2025 08:30:16 +0000 (+0200) Subject: Added quotes to mask spaces in the path when building X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=978a4e199d60b8616180128c5d709d9600409113;p=thirdparty%2Fopenssl.git 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) --- diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index b6717238131..1fc14475d77 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 } @@ -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