mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-04 19:03:28 +08:00
package/infozip: silent LFS warning
infozip already defines _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE in some sources files when LARGE_FILE_SUPPORT is set. Remove them from CFLAGS. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
3046df4572
commit
6a919e0a43
@ -21,9 +21,14 @@ INFOZIP_CFLAGS = -I. -DUNIX
|
||||
# removed since it can't work for cross-compilation.
|
||||
INFOZIP_CFLAGS += -DUIDGID_NOT_16BIT
|
||||
|
||||
# infozip already defines _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE when
|
||||
# necessary, redefining it on the command line causes some warnings.
|
||||
INFOZIP_TARGET_CFLAGS = \
|
||||
$(filter-out -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE,$(TARGET_CFLAGS))
|
||||
|
||||
define INFOZIP_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
||||
CFLAGS="$(TARGET_CFLAGS) $(INFOZIP_CFLAGS)" \
|
||||
CFLAGS="$(INFOZIP_TARGET_CFLAGS) $(INFOZIP_CFLAGS)" \
|
||||
AS="$(TARGET_CC) -c" \
|
||||
-f unix/Makefile generic
|
||||
endef
|
||||
|
Loading…
Reference in New Issue
Block a user