diff options
| author | martin <martin@NetBSD.org> | 2018-09-29 19:44:57 +0000 |
|---|---|---|
| committer | martin <martin@NetBSD.org> | 2018-09-29 19:44:57 +0000 |
| commit | 4489f336f2310fdf9a4b69a76bfaf2f5eeb50c63 (patch) | |
| tree | c587e87ce2383a9c0bc099d351cd87341c8bf079 /crypto | |
| parent | 30a9b14e11a9f3d66590c24bb4498f61c2268dc9 (diff) | |
Upstream does not support armv4 any more - but it is trivial to add
add regen time. Make the "regen" target here do it.
Diffstat (limited to 'crypto')
| -rw-r--r-- | crypto/external/bsd/openssl/lib/libcrypto/arch/arm/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/Makefile b/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/Makefile index 63f9eaffc48..6f868f73ec8 100644 --- a/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/Makefile +++ b/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2018/03/04 00:24:21 christos Exp $ +# $NetBSD: Makefile,v 1.3 2018/09/29 19:44:57 martin Exp $ .include "bsd.own.mk" @@ -9,8 +9,10 @@ regen: for i in $$(find ${OPENSSLSRC} -name \*arm\*.pl); do \ case $$i in \ (*/charmap.pl|*/arm-xlate.pl);; \ - (*) perl -I${OPENSSLSRC}/crypto/perlasm \ + (*) printf '#include "arm_asm.h"\n' > $$(basename $$i .pl).S; \ + perl -I${OPENSSLSRC}/crypto/perlasm \ -I${OPENSSLSRC}/crypto/bn/asm $$i linux /dev/stdout \ - > $$(basename $$i .pl).S;; \ + | sed -E 's/bx[[:space:]]+lr/RET/' \ + >> $$(basename $$i .pl).S;; \ esac; \ done |
