summaryrefslogtreecommitdiffstatshomepage
path: root/py/py.mk
diff options
context:
space:
mode:
authorAndrew Scheller <github@loowis.durge.org>2014-04-07 01:35:45 +0100
committerAndrew Scheller <github@loowis.durge.org>2014-04-07 01:35:45 +0100
commit902d9552c551a14821fbf9a801eb2174fcd04dbb (patch)
treed634b811a1798052fda3753b73c7e7ad42952ec2 /py/py.mk
parent36e75aef38b9553f852454d7013cbc0ba919ef30 (diff)
downloadmicropython-902d9552c551a14821fbf9a801eb2174fcd04dbb.tar.gz
micropython-902d9552c551a14821fbf9a801eb2174fcd04dbb.zip
Replace some Makefile commands with variables in py/mkenv.mk
Diffstat (limited to 'py/py.mk')
-rw-r--r--py/py.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/py.mk b/py/py.mk
index 08cfc189ad..0d097ef57c 100644
--- a/py/py.mk
+++ b/py/py.mk
@@ -105,7 +105,7 @@ $(PY_BUILD)/py-version.h: FORCE
$(PY_BUILD)/qstrdefs.generated.h: | $(PY_BUILD)/
$(PY_BUILD)/qstrdefs.generated.h: $(PY_QSTR_DEFS) $(QSTR_DEFS) $(PY_SRC)/makeqstrdata.py
$(ECHO) "makeqstrdata $(PY_QSTR_DEFS) $(QSTR_DEFS)"
- $(Q)python $(PY_SRC)/makeqstrdata.py $(PY_QSTR_DEFS) $(QSTR_DEFS) > $@
+ $(Q)$(PYTHON) $(PY_SRC)/makeqstrdata.py $(PY_QSTR_DEFS) $(QSTR_DEFS) > $@
# We don't know which source files actually need the generated.h (since
# it is #included from str.h). The compiler generated dependencies will cause