1088372941
Download site moved to strace.io. No upstream provided hashes. Drop the musl specific autoconf seed values. These values are now detected correctly. Add --enable-mpers=check to fix configure on aarch64 that does not support binaries for the compat personality. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
580 B
Makefile
21 lines
580 B
Makefile
################################################################################
|
|
#
|
|
# strace
|
|
#
|
|
################################################################################
|
|
|
|
STRACE_VERSION = 4.21
|
|
STRACE_SOURCE = strace-$(STRACE_VERSION).tar.xz
|
|
STRACE_SITE = https://strace.io/files/$(STRACE_VERSION)
|
|
STRACE_LICENSE = BSD-3-Clause
|
|
STRACE_LICENSE_FILES = COPYING
|
|
STRACE_CONF_OPTS = --enable-mpers=check
|
|
|
|
define STRACE_REMOVE_STRACE_GRAPH
|
|
rm -f $(TARGET_DIR)/usr/bin/strace-graph
|
|
endef
|
|
|
|
STRACE_POST_INSTALL_TARGET_HOOKS += STRACE_REMOVE_STRACE_GRAPH
|
|
|
|
$(eval $(autotools-package))
|