diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-01-07 09:01:43 +0100 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-01-07 09:02:37 +0100 |
commit | 7856a16ea03ed9b17860d756ee6473c2e57882b2 (patch) | |
tree | fec32cc950f5f7d7f0811e1678bec4b021d72edb /lib/Kconfig | |
parent | bzip2/lzma: proper Kconfig dependencies for the ramdisk options (diff) | |
download | linux-7856a16ea03ed9b17860d756ee6473c2e57882b2.tar.xz linux-7856a16ea03ed9b17860d756ee6473c2e57882b2.zip |
bzip2/lzma: DECOMPRESS_GZIP should select ZLIB_INFLATE
Impact: Partial resolution of build failure
DECOMPRESS_GZIP is just a common-interface wrapper around the
zlib_inflate code; it thus need to select it.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to '')
-rw-r--r-- | lib/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index e37f061fd32a..daa481824d9c 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -102,6 +102,7 @@ config LZO_DECOMPRESS # ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.) # config DECOMPRESS_GZIP + select ZLIB_INFLATE tristate config DECOMPRESS_BZIP2 |