diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2008-01-05 23:28:38 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2008-01-05 23:28:38 +0100 |
commit | 4d1f3f7a6c4dd0162c903c8fb96265db1ba0b91c (patch) | |
tree | 328056764c4a9c99714f52e0a314f048c8776f59 /crypto/x86cpuid.pl | |
parent | Fix unsigned/signed warnings in ssl. (diff) | |
download | openssl-4d1f3f7a6c4dd0162c903c8fb96265db1ba0b91c.tar.xz openssl-4d1f3f7a6c4dd0162c903c8fb96265db1ba0b91c.zip |
Update perl asm scripts include paths for perlasm.
Diffstat (limited to 'crypto/x86cpuid.pl')
-rw-r--r-- | crypto/x86cpuid.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/x86cpuid.pl b/crypto/x86cpuid.pl index 0fb0657fa7..c329111203 100644 --- a/crypto/x86cpuid.pl +++ b/crypto/x86cpuid.pl @@ -1,6 +1,7 @@ #!/usr/bin/env perl -push(@INC,"perlasm"); +$0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; +push(@INC, "${dir}perlasm", "perlasm"); require "x86asm.pl"; &asm_init($ARGV[0],"x86cpuid"); |