c07f1ce0ec
The source files of trace-cmd already define _LARGEFILE64_SOURCE, but Buildroot passes it again on the build command line through CFLAGS, which causes a build error. We fix this by filtering out our definition of _LARGEFILE64_SOURCE from the CFLAGS before passing them to the trace-cmd Makefile. Fixes the warning visible at: http://autobuild.buildroot.net/results/1c4567a230940a5287d03e2a5c2c7afbdc64cd36/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
31 lines
1.0 KiB
Makefile
31 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# trace-cmd
|
|
#
|
|
################################################################################
|
|
|
|
TRACE_CMD_VERSION = trace-cmd-v2.2.1
|
|
TRACE_CMD_SITE = http://git.kernel.org/cgit/linux/kernel/git/rostedt/trace-cmd.git
|
|
TRACE_CMD_SITE_METHOD = git
|
|
TRACE_CMD_INSTALL_STAGING = YES
|
|
TRACE_CMD_LICENSE = GPLv2 LGPLv2.1
|
|
TRACE_CMD_LICENSE_FILES = COPYING COPYING.LIB
|
|
|
|
# trace-cmd already defines _LARGEFILE64_SOURCE when necessary,
|
|
# redefining it on the command line causes build problems.
|
|
TRACE_CMD_CFLAGS=$(filter-out -D_LARGEFILE64_SOURCE,$(TARGET_CFLAGS)) -D_GNU_SOURCE
|
|
|
|
define TRACE_CMD_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TRACE_CMD_CFLAGS)" \
|
|
-C $(@D) all
|
|
endef
|
|
|
|
define TRACE_CMD_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/trace-cmd $(TARGET_DIR)/usr/bin/trace-cmd
|
|
$(INSTALL) -d -m 0755 $(TARGET_DIR)/usr/lib/trace-cmd/plugins
|
|
$(INSTALL) -D -m 0755 $(@D)/plugin_*.so $(TARGET_DIR)/usr/lib/trace-cmd/plugins
|
|
endef
|
|
|
|
$(eval $(generic-package))
|