fix typo: Make.defs -> Makefile

change from @simbit18

Signed-off-by: raiden00pl <raiden00@railab.me>
This commit is contained in:
raiden00pl 2025-08-30 08:31:58 +02:00
parent 6e98b8d797
commit afb0e6cccd
No known key found for this signature in database
GPG key ID: 80BDA883437A37B1

View file

@ -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: