From 4ae7c0c40e1f8fccc98d2f58cf61ef58c5a27da6 Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Wed, 20 Jul 2016 11:48:36 +0200 Subject: do_unpackpost: explicitly set working directory bitbake rev 67a7b8b02 "build: don't use $B as the default cwd for functions" (included in current bitbake master) breaks the assumption that do_unpackpost runs inside the build directory. Now that has to be set explicitly, which is also okay for older bitbake versions. Signed-off-by: Patrick Ohly Signed-off-by: Otavio Salvador --- recipes-core/junit/junit_3.8.2.bb | 1 + 1 file changed, 1 insertion(+) (limited to 'recipes-core/junit') diff --git a/recipes-core/junit/junit_3.8.2.bb b/recipes-core/junit/junit_3.8.2.bb index bae022d..90ffd66 100644 --- a/recipes-core/junit/junit_3.8.2.bb +++ b/recipes-core/junit/junit_3.8.2.bb @@ -13,6 +13,7 @@ DEPENDS += "unzip-native" inherit java-library +do_unpackpost[dirs] = "${B}" do_unpackpost() { mkdir -p src # Prevent deletion by do_removebinaries. -- cgit v1.2.3-54-g00ecf