package/strace: don't remove strace-graph unconditionally
strace-graph is a perl script. This script is removed unconditionally
since commit 720c0ca5ba
("strace: convert to makefile.autotools.in
format") from 2008. Since then Buildroot added support for perl on
target. Don't remove strace-graph when perl is built for target.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
[Thomas: move the hook definition inside the condition.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
d6b68e6b6a
commit
fe3d60edf2
@ -34,10 +34,12 @@ else
|
|||||||
STRACE_CONF_OPTS += --without-libiberty
|
STRACE_CONF_OPTS += --without-libiberty
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_PERL),)
|
||||||
define STRACE_REMOVE_STRACE_GRAPH
|
define STRACE_REMOVE_STRACE_GRAPH
|
||||||
rm -f $(TARGET_DIR)/usr/bin/strace-graph
|
rm -f $(TARGET_DIR)/usr/bin/strace-graph
|
||||||
endef
|
endef
|
||||||
|
|
||||||
STRACE_POST_INSTALL_TARGET_HOOKS += STRACE_REMOVE_STRACE_GRAPH
|
STRACE_POST_INSTALL_TARGET_HOOKS += STRACE_REMOVE_STRACE_GRAPH
|
||||||
|
endif
|
||||||
|
|
||||||
$(eval $(autotools-package))
|
$(eval $(autotools-package))
|
||||||
|
Loading…
Reference in New Issue
Block a user