From 6e1d44fd56142b27fc75ee92fae1ba82341909f9 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Mon, 26 Jul 2010 22:11:23 +0000 Subject: [PATCH 1/1] Replace alphacpuid.s with alphacpuid.pl to ensure it makes to release tar-balls [from HEAD]. PR: 2309 --- crypto/Makefile | 4 +++- crypto/{alphacpuid.s => alphacpuid.pl} | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) rename crypto/{alphacpuid.s => alphacpuid.pl} (97%) 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 +___ -- 2.34.1