From abe7f8b457c29af112005e821b57c0a355df82c5 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sun, 13 Jan 2008 17:42:04 +0000 Subject: [PATCH] Make all x86_64 modules independent on current working directory. --- crypto/md5/asm/md5-x86_64.pl | 8 +++++++- crypto/whrlpool/asm/wp-x86_64.pl | 8 +++++++- crypto/x86_64cpuid.pl | 4 +++- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/crypto/md5/asm/md5-x86_64.pl b/crypto/md5/asm/md5-x86_64.pl index 4330eddb17..493231401e 100755 --- a/crypto/md5/asm/md5-x86_64.pl +++ b/crypto/md5/asm/md5-x86_64.pl @@ -109,7 +109,13 @@ EOF } my $output = shift; -open STDOUT,"| $^X ../perlasm/x86_64-xlate.pl $output"; + +$0 =~ m/(.*[\/\\])[^\/\\]+$/; my $dir=$1; my $xlate; +( $xlate="${dir}x86_64-xlate.pl" and -f $xlate ) or +( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or +die "can't locate x86_64-xlate.pl"; + +open STDOUT,"| $^X $xlate $output"; $code .= <