summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2019-12-20 00:51:48 +0100
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2019-12-20 15:23:33 +0000
commitb3d272d13d36f837e79cfee7eb0db5a779b41390 (patch)
treee1b63a3672e9b00502a19eee48ee7f4e10ff5757
parent7fefce9ac45937d115a2f4f25e3cf336ac913fd8 (diff)
Add cloc to hosttools and use patched sources
to use the cloc bbclass, cloc needs to be installed on the host. Thus add it to HOSTTOOLS and also apply all patches. Change-Id: Ifd9a355d2d0dc75f55b683e9d7f398a8f46bae16 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
-rw-r--r--meta-agl-profile-core/classes/cloc.bbclass6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-agl-profile-core/classes/cloc.bbclass b/meta-agl-profile-core/classes/cloc.bbclass
index 53713bfc3..9b73704e8 100644
--- a/meta-agl-profile-core/classes/cloc.bbclass
+++ b/meta-agl-profile-core/classes/cloc.bbclass
@@ -5,6 +5,10 @@
# summary with
# cloc --sum-reports `find . -name "*clocreport" | grep -v "\-native" ` --out summary.report
+# cloc needs to be installed on the host
+# FIXME: create a cloc-native
+HOSTTOOLS += "cloc"
+
CLOC_DIRECTORY ??= "${DEPLOY_DIR}/cloc/"
CLOCSTATEDIR = "${WORKDIR}/cloc-destdir/"
@@ -24,6 +28,6 @@ python do_cloc() {
}
-addtask cloc before do_configure after do_unpack
+addtask cloc before do_configure after do_patch
EXPORT_FUNCTIONS do_cloc