From d279c7c57d49f80ce6d7ec972430bb14d2af47bb Mon Sep 17 00:00:00 2001
From: Amelia Coutard <eliottulio.coutard@gmail.com>
Date: Fri, 14 Oct 2022 09:07:03 +0200
Subject: [PATCH] Fixed bug about dependencies in the kernel's module.mk

---
 kernel/module.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/module.mk b/kernel/module.mk
index eefe87c..9c610c9 100644
--- a/kernel/module.mk
+++ b/kernel/module.mk
@@ -49,7 +49,7 @@ $(OUT_DIR)%.o: $(SRC_DIR)%
 	mkdir -p $(dir $(DEP_DIR)$*)
 	$(CXX) $(CXXFLAGS) -c "$<" -MMD -MT "$@" -MF "$(DEP_DIR)$*.d" -o "$@"
 
--include $(DEPS_DIR)*.d
+-include $(DEP_DIR)*.d
 
 CXXFLAGS := $(OLD_CXXFLAGS)
 LDFLAGS := $(OLD_LDFLAGS)
-- 
2.46.0