diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-01-07 00:01:43 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-01-07 00:02:37 -0800 |
commit | 7856a16ea03ed9b17860d756ee6473c2e57882b2 (patch) | |
tree | fec32cc950f5f7d7f0811e1678bec4b021d72edb | |
parent | c8531ab343dec88ed8005e403b1b304c710b7494 (diff) | |
download | linux-3.10-7856a16ea03ed9b17860d756ee6473c2e57882b2.tar.gz linux-3.10-7856a16ea03ed9b17860d756ee6473c2e57882b2.tar.bz2 linux-3.10-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>
-rw-r--r-- | lib/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index e37f061fd32..daa481824d9 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 |