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 /engines | |
parent | Configure,test/recipes: "pin" glob to File::Glob::glob. (diff) | |
download | openssl-cfe1d9929ee7d58e9e290d20b14b309b327d8a8f.tar.xz openssl-cfe1d9929ee7d58e9e290d20b14b309b327d8a8f.zip |
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 'engines')
-rw-r--r-- | engines/asm/e_padlock-x86_64.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/asm/e_padlock-x86_64.pl b/engines/asm/e_padlock-x86_64.pl index bf57da78fc..da285abc61 100644 --- a/engines/asm/e_padlock-x86_64.pl +++ b/engines/asm/e_padlock-x86_64.pl @@ -30,7 +30,7 @@ $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; ( $xlate="${dir}../../crypto/perlasm/x86_64-xlate.pl" and -f $xlate) or die "can't locate x86_64-xlate.pl"; -open OUT,"| \"$^X\" $xlate $flavour $output"; +open OUT,"| \"$^X\" \"$xlate\" $flavour \"$output\""; *STDOUT=*OUT; $code=".text\n"; |