diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-04-28 15:08:10 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-04-28 15:08:10 +0200 |
commit | 340ed32cc45e0ada8d57492beec6c857434cab3d (patch) | |
tree | 1b38115f10ca18a3567acaaa8f6085510d420650 | |
parent | 780d2561b24aa317bbdf84effda177d775f852af (diff) |
tests: Fix copying files
-rw-r--r-- | tests/user-qemu.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/user-qemu.mk b/tests/user-qemu.mk index 0c470ba2..c658ca21 100644 --- a/tests/user-qemu.mk +++ b/tests/user-qemu.mk @@ -184,7 +184,8 @@ tests/test-%.iso: tests/module-% $(GNUMACH) $(srcdir)/tests/grub.cfg.single.temp -e "s/GNUMACHARGS/$(GNUMACH_ARGS)/g" \ -e "s/TEST_START_MARKER/$(TEST_START_MARKER)/g" \ >$(builddir)/tests/isofiles-$*/boot/grub/grub.cfg - cp $(GNUMACH) $< $(builddir)/tests/isofiles-$*/boot/gnumach + cp $(GNUMACH) $(builddir)/tests/isofiles-$*/boot/gnumach + cp $< $(builddir)/tests/isofiles-$*/boot/ grub-mkrescue -o $@ $(builddir)/tests/isofiles-$* rm -rf $(builddir)/tests/isofiles-$* |