From: Richard Levitte Date: Sat, 1 Jun 2019 05:07:48 +0000 (+0200) Subject: Windows: Add missing quotes in build file X-Git-Tag: openssl-3.0.0-alpha1~2008 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=aad07a2f26b15509598f9941b72270ea4f3f7cdd;p=oweals%2Fopenssl.git Windows: Add missing quotes in build file All invokations of $(PERL) need to be quoted, in case it contains spaces. That was forgotten in one spot. Fixes #9060 Reviewed-by: Shane Lontis Reviewed-by: Matthias St. Pierre (Merged from https://github.com/openssl/openssl/pull/9062) --- diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl index de59794103..a07e142672 100644 --- a/Configurations/windows-makefile.tmpl +++ b/Configurations/windows-makefile.tmpl @@ -539,7 +539,7 @@ reconfigure reconf: $args{generator}->[1] || platform->dsoname($args{product}); return <<"EOF"; $target: $args{generator}->[0] $deps $mkdef - \$(PERL) $mkdef$ord_ver --ordinals $args{generator}->[0] --name $ord_name --OS windows > $target + "\$(PERL)" $mkdef$ord_ver --ordinals $args{generator}->[0] --name $ord_name --OS windows > $target EOF } elsif (!platform->isasm($args{src})) { my $target = $args{src};