Merge pull request #1396 from cdwilson/fix-micropython-build

Fix path to Unix port in micropython build
This commit is contained in:
Yamashita, Yuu 2019-09-19 09:24:17 +09:00 committed by GitHub
commit a7cba17fb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1010,7 +1010,7 @@ build_package_micropython() {
fi
{ cd mpy-cross
"$MAKE" $MAKE_OPTS
cd ports/unix
cd ../ports/unix
"$MAKE" $MAKE_OPTS axtls
"$MAKE" $MAKE_OPTS CFLAGS_EXTRA="-DMICROPY_PY_SYS_PATH_DEFAULT='\"${PREFIX_PATH}/lib/micropython\"'"
"$MAKE" install $MAKE_INSTALL_OPTS PREFIX="${PREFIX_PATH}"