From: Andy Polyakov Date: Mon, 26 Jul 2010 22:11:23 +0000 (+0000) Subject: Replace alphacpuid.s with alphacpuid.pl to ensure it makes to release tar-balls ... X-Git-Tag: OpenSSL_1_0_1-beta1~486 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=6e1d44fd56142b27fc75ee92fae1ba82341909f9;hp=528ff4b4515ea72af2dd0eaf2a27471c25b781cb Replace alphacpuid.s with alphacpuid.pl to ensure it makes to release tar-balls [from HEAD]. PR: 2309 --- diff --git a/crypto/Makefile b/crypto/Makefile index c1033f6d77..85d9f249c5 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -74,7 +74,9 @@ 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) $@ +ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@ +alphacpuid.s: alphacpuid.pl + $(PERL) $< | $(CC) -E - | tee $@ > /dev/null testapps: [ -z "$(THIS)" ] || ( if echo $(SDIRS) | fgrep ' des '; \ 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 +___