From: Andy Polyakov Date: Thu, 27 Feb 2014 13:26:12 +0000 (+0100) Subject: perlasm/x86asm.pl: recognize elf-1 denoting old ELF platforms. X-Git-Tag: master-post-reformat~917 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=b62a4a1c0e77233e201517e5e32d575a0f20cc05 perlasm/x86asm.pl: recognize elf-1 denoting old ELF platforms. --- diff --git a/crypto/perlasm/x86asm.pl b/crypto/perlasm/x86asm.pl index dcbc738516..cae156ae63 100644 --- a/crypto/perlasm/x86asm.pl +++ b/crypto/perlasm/x86asm.pl @@ -255,6 +255,8 @@ sub ::asm_init $elf=$cpp=$coff=$aout=$macosx=$win32=$netware=$mwerks=$android=0; if (($type eq "elf")) { $elf=1; require "x86gas.pl"; } + elsif (($type eq "elf-1")) + { $elf=-1; require "x86gas.pl"; } elsif (($type eq "a\.out")) { $aout=1; require "x86gas.pl"; } elsif (($type eq "coff" or $type eq "gaswin"))