]> git.proxmox.com Git - mirror_qemu.git/commitdiff
docker: Clean dangling tarball files
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Sat, 18 Aug 2018 03:03:37 +0000 (00:03 -0300)
committerFam Zheng <famz@redhat.com>
Mon, 10 Sep 2018 03:50:06 +0000 (11:50 +0800)
When a container fails, it leaves a dangling tarball which name is
based on a timestamp. Further uses of make won't clean those files,
neither calling the 'docker-clean' target.

Use the .DELETE_ON_ERROR built-in target to let make remove those
temporary tarballs in case of failure.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180818030337.22271-1-f4bug@amsat.org>
Signed-off-by: Fam Zheng <famz@redhat.com>
tests/docker/Makefile.include

index d3101afecdaa1ce6ad955a73d4af876b13ec9300..6e03235ab929486083c897f5489052bfe8bcdb87 100644 (file)
@@ -25,6 +25,7 @@ IMAGES ?= %
 CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$)
 DOCKER_SRC_COPY := $(BUILD_DIR)/docker-src.$(CUR_TIME)
 
+.DELETE_ON_ERROR: $(DOCKER_SRC_COPY)
 $(DOCKER_SRC_COPY):
        @mkdir $@
        $(if $(SRC_ARCHIVE), \