diff options
author | Giovanni Cabiddu <giovanni.cabiddu@intel.com> | 2016-10-26 05:56:45 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-10-31 20:37:15 -0400 |
commit | 6c0f40005ce4ada880f684d9d15fd05b076ee2c4 (patch) | |
tree | 1dd60dee494de62a765f78020013a63abd585a30 /crypto/Makefile | |
parent | d69985a07692cbe67c50fa0e0ed8ffbd25cedd71 (diff) |
crypto: acomp - fix dependency in Makefile
Fix dependency between acomp and scomp that appears when acomp is
built as module
Signed-off-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r-- | crypto/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/Makefile b/crypto/Makefile index 5c83f3dea119..82ffeee1be52 100644 --- a/crypto/Makefile +++ b/crypto/Makefile | |||
@@ -50,8 +50,9 @@ rsa_generic-y += rsa_helper.o | |||
50 | rsa_generic-y += rsa-pkcs1pad.o | 50 | rsa_generic-y += rsa-pkcs1pad.o |
51 | obj-$(CONFIG_CRYPTO_RSA) += rsa_generic.o | 51 | obj-$(CONFIG_CRYPTO_RSA) += rsa_generic.o |
52 | 52 | ||
53 | obj-$(CONFIG_CRYPTO_ACOMP2) += acompress.o | 53 | crypto_acompress-y := acompress.o |
54 | obj-$(CONFIG_CRYPTO_ACOMP2) += scompress.o | 54 | crypto_acompress-y += scompress.o |
55 | obj-$(CONFIG_CRYPTO_ACOMP2) += crypto_acompress.o | ||
55 | 56 | ||
56 | cryptomgr-y := algboss.o testmgr.o | 57 | cryptomgr-y := algboss.o testmgr.o |
57 | 58 | ||