klibc-bot for Anton Blanchard
2013-Dec-03 18:57 UTC
[klibc] [klibc:master] gzip: Fix typo CONFIG_KLIB_ZIP -> CONFIG_KLIBC_ZIP
Commit-ID: c6fc1a4b086a5d6504bc5e1048f039f7a644d73b Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=c6fc1a4b086a5d6504bc5e1048f039f7a644d73b Author: Anton Blanchard <anton at samba.org> AuthorDate: Tue, 3 Dec 2013 18:15:58 +1100 Committer: H. Peter Anvin <hpa at zytor.com> CommitDate: Tue, 3 Dec 2013 10:53:46 -0800 [klibc] gzip: Fix typo CONFIG_KLIB_ZIP -> CONFIG_KLIBC_ZIP We were using CONFIG_KLIB_ZIP in a couple of places where we meant to use CONFIG_KLIBC_ZIP. I also added the option to the defconfig. Signed-off-by: Anton Blanchard <anton at samba.org> Signed-off-by: H. Peter Anvin <hpa at zytor.com> --- defconfig | 1 + usr/gzip/Kbuild | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/defconfig b/defconfig index c10a4f5..04b98e9 100644 --- a/defconfig +++ b/defconfig @@ -1,6 +1,7 @@ CONFIG_KLIBC=y CONFIG_KLIBC_ERRLIST=y CONFIG_KLIBC_ZLIB=y +# CONFIG_KLIBC_ZIP is not set # i386 option CONFIG_REGPARM=y # ARM options diff --git a/usr/gzip/Kbuild b/usr/gzip/Kbuild index 64fae04..9bbf0a4 100644 --- a/usr/gzip/Kbuild +++ b/usr/gzip/Kbuild @@ -10,8 +10,8 @@ gzip-y := gzip.o util.o unzip.o inflate.o always := gunzip zcat # Optional ZIP support -gzip-$(CONFIG_KLIB_ZIP) += zip.o deflate.o trees.o bits.o -cflags-$(CONFIG_KLIB_ZIP) += -DSUPPORT_ZIP +gzip-$(CONFIG_KLIBC_ZIP) += zip.o deflate.o trees.o bits.o +cflags-$(CONFIG_KLIBC_ZIP) += -DSUPPORT_ZIP EXTRA_KLIBCCFLAGS := $(cflags-y) # Additionally linked targets
Reasonably Related Threads
- [PATCH] gzip: Fix typo CONFIG_KLIB_ZIP -> CONFIG_KLIBC_ZIP
- [patch] kbuild: build all targets in gzip
- [klibc:master] README.klibc: Document most of the build options
- [PATCH] fix build failure when CONFIG_KLIBC_ZLIB is not set
- [klibc:master] fix build failure when CONFIG_KLIBC_ZLIB is not set