Anders Roxell <[email protected]> writes: > DOCKER_QEMU_CCACHE_DIR is missing $() around DOCKER_QEMU_CACHE_DIR, so > $HOME/.cache/qemu is never created. podman then fails to mount it: > > Error: statfs /home/user/.cache/qemu: no such file or directory > > It only works if the directory already exists. Add the missing $(). > > Fixes: 8a1975e4d44b ("tests/docker: expose $HOME/.cache/qemu as docker > volume") > Signed-off-by: Anders Roxell <[email protected]> > --- > tests/docker/Makefile.include | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include > index 0adddb6a5c62..e506add8aa8b 100644 > --- a/tests/docker/Makefile.include > +++ b/tests/docker/Makefile.include > @@ -199,7 +199,7 @@ docker-help: docker > # Where QEMU caches build artefacts > DOCKER_QEMU_CACHE_DIR := $$HOME/.cache/qemu > # Use a global constant ccache directory to speed up repetitive builds > -DOCKER_QEMU_CCACHE_DIR := DOCKER_QEMU_CACHE_DIR/docker-ccache > +DOCKER_QEMU_CCACHE_DIR := $(DOCKER_QEMU_CACHE_DIR)/docker-ccache > > # This rule if for directly running against an arbitrary docker target. > # It is called by the expanded docker targets (e.g. make
Queued to testing/next, thanks. -- Alex Bennée Virtualisation Tech Lead @ Linaro
