From afb0e6cccda6d2f85a31b8ddfc39e92e044d9441 Mon Sep 17 00:00:00 2001 From: raiden00pl Date: Sat, 30 Aug 2025 08:31:58 +0200 Subject: [PATCH] fix typo: Make.defs -> Makefile change from @simbit18 Signed-off-by: raiden00pl --- tools/nxmake2cmake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nxmake2cmake.py b/tools/nxmake2cmake.py index c2da29195a7..b090e8c22e9 100644 --- a/tools/nxmake2cmake.py +++ b/tools/nxmake2cmake.py @@ -153,7 +153,7 @@ def convert_board_makefile(path): content = "" with open(mpath, "r") as fm: content = fm.read() - content = content.replace("src/Make.defs", "src/CMakeLists.txt") + content = content.replace("src/Makefile", "src/CMakeLists.txt") content = convert_board_common(path, content) if content: