From 21855f256cee87cc2230770343a3848455e27515 Mon Sep 17 00:00:00 2001 From: Ahurac Date: Sun, 21 Jan 2024 11:32:22 +0100 Subject: [PATCH] =?UTF-8?q?Makefile=20:=20ajout=20du=20dossier=20sockets?= =?UTF-8?q?=20dans=20la=20liste=20des=20dossiers=20n=C3=A9cessaires=20au?= =?UTF-8?q?=20fonctionnement=20de=20qemush?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fc5a007..bf1da3f 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ SRC_C_SOURCES_NAMES := $(notdir $(basename $(wildcard $(SRCD)/*$(SRC_FMT)))) C_BINARIES := $(addprefix $(QEMU_BIN)/,$(SRC_C_SOURCES_NAMES)) # Directories in ~qemu necessary for qemush to work -QEMUSH_DIRS_NAMES := bin launchers disks +QEMUSH_DIRS_NAMES := bin launchers disks sockets QEMUSH_DIRS := $(addprefix $(QEMU_HOME)/,$(QEMUSH_DIRS_NAMES)) install: $(QEMUSH_DIRS) $(MODULES) $(C_BINARIES) $(QEMUSH) $(LAUNCHERS)