Skip to content

Commit 5789163

Browse files
dm0-herbertx
authored andcommitted
crypto: rsa - Add Makefile dependencies to fix parallel builds
Both asn1 headers are included by rsa_helper.c, so rsa_helper.o should explicitly depend on them. Signed-off-by: David Michael <david.michael@coreos.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
1 parent 66bf093 commit 5789163

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

crypto/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ obj-$(CONFIG_CRYPTO_ECDH) += ecdh_generic.o
4040

4141
$(obj)/rsapubkey-asn1.o: $(obj)/rsapubkey-asn1.c $(obj)/rsapubkey-asn1.h
4242
$(obj)/rsaprivkey-asn1.o: $(obj)/rsaprivkey-asn1.c $(obj)/rsaprivkey-asn1.h
43+
$(obj)/rsa_helper.o: $(obj)/rsapubkey-asn1.h $(obj)/rsaprivkey-asn1.h
4344
clean-files += rsapubkey-asn1.c rsapubkey-asn1.h
4445
clean-files += rsaprivkey-asn1.c rsaprivkey-asn1.h
4546

0 commit comments

Comments
 (0)