From 12bede1803585c511725e32f55beffb797e7587c Mon Sep 17 00:00:00 2001 From: Christophe de Dinechin Date: Wed, 21 Oct 2020 14:31:50 +0200 Subject: [PATCH] runtime: Restore QEMUVIRTIOFSPATH variable in Makefile Due to a bad edit / fixup in commit be6ee2550d5387736a, the variable QEMUVIRTIOFSPATH was incorrectly removed from the makefile. This problem was found by the 1.x CI checks, see https://github.com/kata-containers/runtime/pull/3005#issuecomment-712887125 Fixes: #1017 Signed-off-by: Christophe de Dinechin --- src/runtime/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/runtime/Makefile b/src/runtime/Makefile index 98777fc499e6..9993bc3330fa 100644 --- a/src/runtime/Makefile +++ b/src/runtime/Makefile @@ -139,7 +139,8 @@ HYPERVISORS := $(HYPERVISOR_ACRN) $(HYPERVISOR_FC) $(HYPERVISOR_QEMU) $(HYPERVIS QEMUPATH := $(QEMUBINDIR)/$(QEMUCMD) QEMUVALIDHYPERVISORPATHS := [\"$(QEMUPATH)\"] -QEMUVALIDVIRTIOFSPATHS := $(QEMUBINDIR)/$(QEMUVIRTIOFSCMD) +QEMUVIRTIOFSPATH := $(QEMUBINDIR)/$(QEMUVIRTIOFSCMD) +QEMUVALIDVIRTIOFSPATHS := [\"$(QEMUVIRTIOFSPATH)\"] CLHPATH := $(CLHBINDIR)/$(CLHCMD) CLHVALIDHYPERVISORPATHS := [\"$(CLHPATH)\"]