sstate: Ensure target sstate directory exists if unihash changes

The previous patches meant the mkdir might no longer match the final target
directory. Fix this.

(From OE-Core rev: 7ce42a30a7508e8fcb496ba05cf6967dc04a988e)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 0af4dae84099e8632a9ea6a4afdbea2f232bb170)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2019-12-11 10:08:58 +00:00
parent 14823a0bda
commit 17e3fcab7a

View File

@@ -613,10 +613,8 @@ def sstate_package(ss, d):
sstatebuild = d.expand("${WORKDIR}/sstate-build-%s/" % ss['task'])
d.appendVar('SSTATE_PKG', '_'+ ss['task'] + ".tgz")
sstatepkg = d.getVar('SSTATE_PKG')
bb.utils.remove(sstatebuild, recurse=True)
bb.utils.mkdirhier(sstatebuild)
bb.utils.mkdirhier(os.path.dirname(sstatepkg))
for state in ss['dirs']:
if not os.path.exists(state[1]):
continue
@@ -756,6 +754,8 @@ sstate_create_package () {
return
fi
mkdir -p `dirname ${SSTATE_PKG}`
# Use pigz if available
OPT="-czS"
if [ -x "$(command -v pigz)" ]; then