Fix Makefile misspelling
Was building without ulab module because it was not patching the Makefile, but trying the nonexistent MakeFile.
This commit is contained in:
parent
68fa115c4b
commit
766babbf20
1 changed files with 4 additions and 4 deletions
|
|
@ -26,10 +26,10 @@ cd $BUILD_DIR/micropython/ports/esp32
|
|||
make submodules
|
||||
|
||||
echo "--- PATCH MAKEFILE ---"
|
||||
cp $BUILD_DIR/micropython/ports/esp32/MakeFile $BUILD_DIR/micropython/ports/esp32/MakeFileOld
|
||||
echo "BOARD = GENERIC" > $BUILD_DIR/micropython/ports/esp32/MakeFile
|
||||
echo "USER_C_MODULES = \$(BUILD_DIR)/ulab/code/micropython.cmake" >> $BUILD_DIR/micropython/ports/esp32/MakeFile
|
||||
cat $BUILD_DIR/micropython/ports/esp32/MakeFileOld >> $BUILD_DIR/micropython/ports/esp32/MakeFile
|
||||
cp $BUILD_DIR/micropython/ports/esp32/Makefile $BUILD_DIR/micropython/ports/esp32/MakefileOld
|
||||
echo "BOARD = GENERIC" > $BUILD_DIR/micropython/ports/esp32/Makefile
|
||||
echo "USER_C_MODULES = \$(BUILD_DIR)/ulab/code/micropython.cmake" >> $BUILD_DIR/micropython/ports/esp32/Makefile
|
||||
cat $BUILD_DIR/micropython/ports/esp32/MakefileOld >> $BUILD_DIR/micropython/ports/esp32/Makefile
|
||||
|
||||
echo "--- MAKE ---"
|
||||
make
|
||||
|
|
|
|||
Loading…
Reference in a new issue