summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/strace
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2012-09-26 11:18:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-18 12:00:36 +0100
commit2e887af1c81f9b373684180f61a7c25163ed0e2c (patch)
tree8a396966adf27375a65ba3a994a71577101a7576 /meta/recipes-devtools/strace
parent7632b44e7f487180811d47fbe9c29aa8e58868a2 (diff)
downloadopenembedded-core-2e887af1c81f9b373684180f61a7c25163ed0e2c.tar.gz
strace: Don't package strace-graph
Commit 9c9ea24b115a9bb87df1323b5f185ce426262aec made strace depend on perl because the strace-graph script needs it. However, this cost of the dependency is large (building all of perl) and the value of the script is marginal. Let's just delete the script instead and remove the dependency again. If anybody wants strace-graph then it should be packaged in its own recipe and that one can be made to depend on perl without disrupting the main strace package. Signed-off-by: Phil Blundell <pb@pbcl.net> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/strace')
-rw-r--r--meta/recipes-devtools/strace/strace_4.7.bb11
1 files changed, 6 insertions, 5 deletions
diff --git a/meta/recipes-devtools/strace/strace_4.7.bb b/meta/recipes-devtools/strace/strace_4.7.bb
index 21dd47a811..e1a5e828ed 100644
--- a/meta/recipes-devtools/strace/strace_4.7.bb
+++ b/meta/recipes-devtools/strace/strace_4.7.bb
@@ -3,11 +3,7 @@ HOMEPAGE = "http://strace.sourceforge.net"
SECTION = "console/utils"
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=124500c21e856f0912df29295ba104c7"
-PR = "r1"
-
-PACKAGES =+ "${PN}-graph "
-FILES_${PN}-graph = "${bindir}/strace-graph"
-RDEPENDS_${PN}-graph = "perl"
+PR = "r2"
SRC_URI = "${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.xz \
file://strace-eglibc-2.16.patch \
@@ -20,4 +16,9 @@ inherit autotools
export INCLUDES = "-I. -I./linux"
+do_install_append() {
+ # We don't ship strace-graph here because it needs perl
+ rm ${D}${bindir}/strace-graph
+}
+
BBCLASSEXTEND = "native"