summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-13 14:11:58 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-13 14:11:58 -0600
commit24546734da04b8e1a42d8b67ffce163592758dc5 (patch)
tree4fd30db24911c9d1231a7dec615e5cc050b5802f /apps
parentdddc3f6723462b76d6cfdb0490d5d4095775ac19 (diff)
downloadnuttx-24546734da04b8e1a42d8b67ffce163592758dc5.tar.gz
nuttx-24546734da04b8e1a42d8b67ffce163592758dc5.tar.bz2
nuttx-24546734da04b8e1a42d8b67ffce163592758dc5.zip
Micro Python uses CROSS_COMPILE, not CROSSDEV
Diffstat (limited to 'apps')
-rw-r--r--apps/interpreters/micropython/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/interpreters/micropython/Makefile b/apps/interpreters/micropython/Makefile
index c725202a1..05b38b43c 100644
--- a/apps/interpreters/micropython/Makefile
+++ b/apps/interpreters/micropython/Makefile
@@ -50,6 +50,8 @@ WGET ?= wget
MICROPYTHON_UNPACKNAME = micropython-$(MICROPYTHON_VERSION)
UNPACK ?= tar -zxf
+CROSS_COMPILE ?= $(CROSSDEV)
+
MICROPYTHON_UNPACKDIR = $(WD)/$(MICROPYTHON_UNPACKNAME)
MICROPTHYON_SRCDIR = $(MICROPYTHON_UNPACKDIR)/py
-include $(MICROPTHYON_SRCDIR)/mkenv.mk