From: Andy Polyakov Date: Mon, 26 Jul 2010 22:04:31 +0000 (+0000) Subject: Replace alphacpuid.s with alphacpuid.pl to ensure it makes to release tar-balls. X-Git-Tag: OpenSSL-fips-2_0-rc1~1021 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=149b18078e938128464f07223904f33f8ab15a40 Replace alphacpuid.s with alphacpuid.pl to ensure it makes to release tar-balls. PR: 2309 --- diff --git a/crypto/Makefile b/crypto/Makefile index 36d93cc349..91efa3358e 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -74,6 +74,8 @@ x86_64cpuid.s: x86_64cpuid.pl; $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@ ia64cpuid.s: ia64cpuid.S; $(CC) $(CFLAGS) -E ia64cpuid.S > $@ ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@ pariscid.s: pariscid.pl; $(PERL) pariscid.pl $(PERLASM_SCHEME) $@ +alphacpuid.s: alphacpuid.pl + $(PERL) $< | $(CC) -E - | tee $@ > /dev/null testapps: [ -z "$(THIS)" ] || ( if expr " $(SDIRS) " : ".* des " >/dev/null; \ diff --git a/crypto/alphacpuid.s b/crypto/alphacpuid.pl similarity index 97% rename from crypto/alphacpuid.s rename to crypto/alphacpuid.pl index 3fa77a0ade..1908216532 100644 --- a/crypto/alphacpuid.s +++ b/crypto/alphacpuid.pl @@ -1,3 +1,5 @@ +#!/usr/bin/env perl +print <<___; .text .set noat @@ -123,3 +125,4 @@ OPENSSL_cleanse: br .Little .Ldone: ret ($26) .end OPENSSL_cleanse +___