diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2007-10-12 09:15:08 +0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-12 09:17:20 +0400 |
commit | d4faaecbcc6d9ea4f7c05f6de6af98e2336a4afb (patch) | |
tree | 20ce6e4991c0dc3b0701fbb0b37819f19d3e9d00 /lib/zlib_inflate/Makefile | |
parent | 9ce768ead83216d394175c0a0d72bc527648c7d0 (diff) | |
download | linux-d4faaecbcc6d9ea4f7c05f6de6af98e2336a4afb.tar.xz |
[ZLIB]: Fix external builds of zlib_inflate code.
Move zlib_inflate_blob() out into it's own source file,
infutil.c, so that things like the powerpc zImage builder
in arch/powerpc/boot/Makefile don't end up trying to
compile it.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib/zlib_inflate/Makefile')
-rw-r--r-- | lib/zlib_inflate/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zlib_inflate/Makefile b/lib/zlib_inflate/Makefile index bf065482fa67..49f8ce5774d2 100644 --- a/lib/zlib_inflate/Makefile +++ b/lib/zlib_inflate/Makefile @@ -15,5 +15,5 @@ obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate.o -zlib_inflate-objs := inffast.o inflate.o \ +zlib_inflate-objs := inffast.o inflate.o infutil.o \ inftrees.o inflate_syms.o |