From 3d2d158e34224dff7ec27be341044332798c5e32 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Tue, 17 Feb 2015 14:42:18 +0100 Subject: test-dependencies.sh: strip only .bb suffix * we were stripping too much when stripping recipe name from line like this: ERROR: Task 12016 (/some/patch/something.dot.bar.bb, do_fetch) failed with exit code '1' where the recipe name contains dots and doesn't end with _.bb (From OE-Core rev: 8c9a25ae70d249b823ab2b0385d539eb8bbc1374) Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- scripts/test-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/test-dependencies.sh') diff --git a/scripts/test-dependencies.sh b/scripts/test-dependencies.sh index 2bcc2ca4f6..e01acbecf7 100755 --- a/scripts/test-dependencies.sh +++ b/scripts/test-dependencies.sh @@ -141,7 +141,7 @@ build_all() { bitbake -k $targets 2>&1 | tee -a ${OUTPUT1}/complete.log RESULT+=${PIPESTATUS[0]} grep "ERROR: Task.*failed" ${OUTPUT1}/complete.log > ${OUTPUT1}/failed-tasks.log - cat ${OUTPUT1}/failed-tasks.log | sed 's@.*/@@g; s@_.*@@g; s@\..*@@g' | sort -u > ${OUTPUT1}/failed-recipes.log + cat ${OUTPUT1}/failed-tasks.log | sed 's@.*/@@g; s@_.*@@g; s@\.bb, .*@@g' | sort -u > ${OUTPUT1}/failed-recipes.log } build_every_recipe() { -- cgit v1.2.3-54-g00ecf