On Tue, Aug 19, 2008 at 05:55:35PM +1000, Herbert Xu wrote: > > diff --git a/crypto/Makefile b/crypto/Makefile > index ed2be05..e3ce913 100644 > --- a/crypto/Makefile > +++ b/crypto/Makefile > @@ -5,6 +5,8 @@ > obj-$(CONFIG_CRYPTO) += crypto.o > crypto-objs := api.o cipher.o digest.o compress.o > > +obj-$(CONFIG_FIPS) += fips.o > + > crypto_algapi-$(CONFIG_PROC_FS) += proc.o > crypto_algapi-objs := algapi.o scatterwalk.o $(crypto_algapi-y) > obj-$(CONFIG_CRYPTO_ALGAPI) += crypto_algapi.o Doh, made a typo here. This patch fixes it up. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <herbert@xxxxxxxxxxxxxxxxxxx> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- diff --git a/crypto/Makefile b/crypto/Makefile index e3ce913..5862b80 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -5,7 +5,7 @@ obj-$(CONFIG_CRYPTO) += crypto.o crypto-objs := api.o cipher.o digest.o compress.o -obj-$(CONFIG_FIPS) += fips.o +obj-$(CONFIG_CRYPTO_FIPS) += fips.o crypto_algapi-$(CONFIG_PROC_FS) += proc.o crypto_algapi-objs := algapi.o scatterwalk.o $(crypto_algapi-y) -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html