diff options
author | Andy Polyakov <appro@openssl.org> | 2016-05-28 16:25:38 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2016-05-29 14:12:51 +0200 |
commit | cfe1d9929ee7d58e9e290d20b14b309b327d8a8f (patch) | |
tree | d0a0d237f4b3cdd82d109021435c9155720192e4 /ms/uplink-x86_64.pl | |
parent | 97855556161155d87635787aca341a6a86b2f9e4 (diff) | |
download | openssl-new-cfe1d9929ee7d58e9e290d20b14b309b327d8a8f.tar.gz |
x86_64 assembly pack: tolerate spaces in source directory name.
[as it is now quoting $output is not required, but done just in case]
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ms/uplink-x86_64.pl')
-rwxr-xr-x | ms/uplink-x86_64.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/uplink-x86_64.pl b/ms/uplink-x86_64.pl index 03500fe91a..1f244504cd 100755 --- a/ms/uplink-x86_64.pl +++ b/ms/uplink-x86_64.pl @@ -8,7 +8,7 @@ $output=pop; $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; -open OUT,"| \"$^X\" ${dir}../crypto/perlasm/x86_64-xlate.pl $output"; +open OUT,"| \"$^X\" \"${dir}../crypto/perlasm/x86_64-xlate.pl\" \"$output\""; *STDOUT=*OUT; push(@INC,"${dir}."); |