17dfec8c9b
It's really not very useful, all it does is install a target strace and ldd in a target_utils directory in staging. While at it clean up the strace makefile a bit. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22 lines
659 B
Makefile
22 lines
659 B
Makefile
#############################################################
|
|
#
|
|
# strace
|
|
#
|
|
#############################################################
|
|
|
|
STRACE_VERSION = 4.5.20
|
|
STRACE_SOURCE = strace-$(STRACE_VERSION).tar.bz2
|
|
STRACE_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/strace
|
|
|
|
STRACE_CONF_ENV = ac_cv_header_linux_if_packet_h=yes \
|
|
ac_cv_header_linux_netlink_h=yes \
|
|
$(if $(BR2_LARGEFILE),ac_cv_type_stat64=yes,ac_cv_type_stat64=no)
|
|
|
|
define STRACE_REMOVE_STRACE_GRAPH
|
|
rm -f $(TARGET_DIR)/usr/bin/strace-graph
|
|
endef
|
|
|
|
STRACE_POST_INSTALL_TARGET_HOOKS += STRACE_REMOVE_STRACE_GRAPH
|
|
|
|
$(eval $(call AUTOTARGETS,package,strace))
|