diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2025-10-02 15:04:36 +1000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2025-10-07 15:33:36 +0200 |
commit | 81fd66a31e44a07ee98f22946104f951245123e5 (patch) | |
tree | ca2eeb4529dffcf4ff49f1608fe0c070107ee2e8 | |
parent | 2274c3a520dfa41e440db93f15153ff426694331 (diff) | |
download | passt-81fd66a31e44a07ee98f22946104f951245123e5.tar passt-81fd66a31e44a07ee98f22946104f951245123e5.tar.gz passt-81fd66a31e44a07ee98f22946104f951245123e5.tar.bz2 passt-81fd66a31e44a07ee98f22946104f951245123e5.tar.lz passt-81fd66a31e44a07ee98f22946104f951245123e5.tar.xz passt-81fd66a31e44a07ee98f22946104f951245123e5.tar.zst passt-81fd66a31e44a07ee98f22946104f951245123e5.zip |
test: Don't delete exetool on make clean
exetool is listed in $(LOCAL_ASSETS), which seems like it makes sense,
until you realise that $(LOCAL_ASSETS) are deleted on make clean, and we
can't rebuild exetool after deleting it (since it's just part of the
exeter tree we download). Move it to $(DOWNLOAD_ASSETS) instead.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r-- | test/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile index 4938827..3800a0a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -52,15 +52,14 @@ UBUNTU_NEW_IMGS = xenial-server-cloudimg-powerpc-disk1.img \ jammy-server-cloudimg-s390x.img UBUNTU_IMGS = $(UBUNTU_OLD_IMGS) $(UBUNTU_NEW_IMGS) -DOWNLOAD_ASSETS = exeter mbuto podman \ +DOWNLOAD_ASSETS = $(EXETOOL) mbuto podman \ $(DEBIAN_IMGS) $(FEDORA_IMGS) $(OPENSUSE_IMGS) $(UBUNTU_IMGS) TESTDATA_ASSETS = small.bin big.bin medium.bin \ rampstream LOCAL_ASSETS = mbuto.img mbuto.mem.img podman/bin/podman QEMU_EFI.fd \ $(DEBIAN_IMGS:%=prepared-%) $(FEDORA_IMGS:%=prepared-%) \ $(UBUNTU_NEW_IMGS:%=prepared-%) \ - nstool guest-key guest-key.pub $(EXETOOL) \ - $(TESTDATA_ASSETS) + nstool guest-key guest-key.pub $(TESTDATA_ASSETS) ASSETS = $(DOWNLOAD_ASSETS) $(LOCAL_ASSETS) |