diff options
author | Andrew Scheller <github@loowis.durge.org> | 2014-04-07 01:35:45 +0100 |
---|---|---|
committer | Andrew Scheller <github@loowis.durge.org> | 2014-04-07 01:35:45 +0100 |
commit | 902d9552c551a14821fbf9a801eb2174fcd04dbb (patch) | |
tree | d634b811a1798052fda3753b73c7e7ad42952ec2 /py/py.mk | |
parent | 36e75aef38b9553f852454d7013cbc0ba919ef30 (diff) | |
download | micropython-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.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |