diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-21 21:32:49 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-21 21:32:49 +0000 |
commit | b17c61938ed9ddcd24294aa978da8db1b6155596 (patch) | |
tree | b7f04401517c7654982cb005e04d0d678d85db12 /package/python | |
parent | 30b4b6dde835be42596ff68e52cc94a219c6b30f (diff) |
- remove some hardcoded occurances of "make" and use the proper variable instead
Diffstat (limited to 'package/python')
-rw-r--r-- | package/python/python.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/python/python.mk b/package/python/python.mk index c51ada482..33646d9b9 100644 --- a/package/python/python.mk +++ b/package/python/python.mk @@ -30,10 +30,10 @@ $(PYTHON_DIR)/.hostpython: $(PYTHON_DIR)/.patched ./configure \ --with-cxx=no \ $(DISABLE_NLS); \ - make python Parser/pygen; \ + $(MAKE) python Parser/pygen; \ mv python hostpython; \ mv Parser/pgen Parser/hostpgen; \ - make distclean \ + $(MAKE) distclean \ ); touch $(PYTHON_DIR)/.hostpython |