Updated license hash due to copyright year bump:
https://github.com/strace/strace/commit/4d6755b556fb00fe5c33b09b08f951bad956c580
This bump includes two upstream commits
https://github.com/strace/strace/commit/bf9384561f295340f85c69deb307740fc9dc28f0
https://github.com/strace/strace/commit/822b5e840dbf4a80262eaea455d9bc7b6a00d245
that fix build errors introduced by the bump of linux-headers to version
6.19 with buildroot commit 566150745b.
This bump is not included in any buildroot LTS branch so no backport
necessary.
Fixes:
https://autobuild.buildroot.net/results/7a3/7a35bfcae87b1fbe1d6e0c4271a364ce330c1d51/
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# strace
|
|
#
|
|
################################################################################
|
|
|
|
STRACE_VERSION = 6.19
|
|
STRACE_SOURCE = strace-$(STRACE_VERSION).tar.xz
|
|
STRACE_SITE = https://github.com/strace/strace/releases/download/v$(STRACE_VERSION)
|
|
STRACE_LICENSE = LGPL-2.1+
|
|
STRACE_LICENSE_FILES = COPYING LGPL-2.1-or-later
|
|
STRACE_CPE_ID_VALID = YES
|
|
STRACE_CONF_OPTS = --enable-mpers=no
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBUNWIND),y)
|
|
STRACE_DEPENDENCIES += libunwind
|
|
STRACE_CONF_OPTS += --with-libunwind
|
|
else
|
|
STRACE_CONF_OPTS += --without-libunwind
|
|
endif
|
|
|
|
# Demangling symbols in stack trace needs libunwind and libiberty.
|
|
ifeq ($(BR2_PACKAGE_BINUTILS)$(BR2_PACKAGE_LIBUNWIND),yy)
|
|
STRACE_DEPENDENCIES += binutils
|
|
STRACE_CONF_OPTS += --with-libiberty=check
|
|
else
|
|
STRACE_CONF_OPTS += --without-libiberty
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PERL),)
|
|
define STRACE_REMOVE_STRACE_GRAPH
|
|
rm -f $(TARGET_DIR)/usr/bin/strace-graph
|
|
endef
|
|
|
|
STRACE_POST_INSTALL_TARGET_HOOKS += STRACE_REMOVE_STRACE_GRAPH
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|