summaryrefslogtreecommitdiffstats
path: root/crypto/camellia
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2012-06-27 12:48:50 +0000
committerAndy Polyakov <appro@openssl.org>2012-06-27 12:48:50 +0000
commit8b654459be4cff1ed3239c8ee303cea1ec1bdd36 (patch)
treec4c95004424c31e467203c754039632b2f2411cb /crypto/camellia
parent93cf058334bfa4b7d9da90e2a223ffccb1c0d28a (diff)
x86_64 assembly pack: make it possible to compile with Perl located
on path with spaces [from HEAD]. PR: 2835
Diffstat (limited to 'crypto/camellia')
-rw-r--r--crypto/camellia/asm/cmll-x86_64.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/camellia/asm/cmll-x86_64.pl b/crypto/camellia/asm/cmll-x86_64.pl
index 76955e4726..10e2298288 100644
--- a/crypto/camellia/asm/cmll-x86_64.pl
+++ b/crypto/camellia/asm/cmll-x86_64.pl
@@ -40,7 +40,7 @@ $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1;
( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or
die "can't locate x86_64-xlate.pl";
-open STDOUT,"| $^X $xlate $flavour $output";
+open STDOUT,"| \"$^X\" $xlate $flavour $output";
sub hi() { my $r=shift; $r =~ s/%[er]([a-d])x/%\1h/; $r; }
sub lo() { my $r=shift; $r =~ s/%[er]([a-d])x/%\1l/;