diff options
author | Richard Levitte <levitte@openssl.org> | 2019-02-04 07:55:56 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-02-04 21:34:32 +0100 |
commit | 1039c7825535d8219b88372b7ad4a3b94c42605d (patch) | |
tree | c5aebae2b65b165186874263c62961ef2f993703 /crypto/rc4 | |
parent | Add an entry to the CHANGES for the d2i_X509_PUBKEY fix (diff) | |
download | openssl-1039c7825535d8219b88372b7ad4a3b94c42605d.tar.xz openssl-1039c7825535d8219b88372b7ad4a3b94c42605d.zip |
Build: correct assembler generation in crypto/rc4/build.info
In the removal of BEGINRAW / ENDRAW, attention to the difference
between capital .S and lowercase .s wasn't duly paid. This corrects
the error.
Fixes #8155
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8157)
Diffstat (limited to 'crypto/rc4')
-rw-r--r-- | crypto/rc4/build.info | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/rc4/build.info b/crypto/rc4/build.info index 9941e6ea15..8d272e4ff6 100644 --- a/crypto/rc4/build.info +++ b/crypto/rc4/build.info @@ -10,5 +10,5 @@ GENERATE[rc4-x86_64.s]=asm/rc4-x86_64.pl $(PERLASM_SCHEME) GENERATE[rc4-md5-x86_64.s]=asm/rc4-md5-x86_64.pl $(PERLASM_SCHEME) GENERATE[rc4-parisc.s]=asm/rc4-parisc.pl $(PERLASM_SCHEME) -GENERATE[rc4-c64xplus.S]=asm/rc4-c64xplus.pl $(PERLASM_SCHEME) -GENERATE[rc4-s390x.S]=asm/rc4-s390x.pl $(PERLASM_SCHEME) +GENERATE[rc4-c64xplus.s]=asm/rc4-c64xplus.pl $(PERLASM_SCHEME) +GENERATE[rc4-s390x.s]=asm/rc4-s390x.pl $(PERLASM_SCHEME) |