diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-16 11:15:51 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-16 11:15:51 +0000 |
commit | 2b57bfa36516a30eae68f9941f0ac7ec3d55117c (patch) | |
tree | 525094e725e40b9078cee2412be85d55c487d2db /package | |
parent | 568fffd769fab00eb514a7fb7412c2458228bdbd (diff) | |
download | buildroot-novena-2b57bfa36516a30eae68f9941f0ac7ec3d55117c.tar.gz buildroot-novena-2b57bfa36516a30eae68f9941f0ac7ec3d55117c.zip |
python: fix hostpython target.
Remove invalid hyphen in front of -$(MAKE) in the middle of a subshell
Patch by Conrad Parker.
Diffstat (limited to 'package')
-rw-r--r-- | package/python/python.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/python/python.mk b/package/python/python.mk index 82c938e9f..53d59c812 100644 --- a/package/python/python.mk +++ b/package/python/python.mk @@ -89,7 +89,7 @@ $(PYTHON_DIR)/.hostpython: $(PYTHON_DIR)/.patched $(MAKE) python Parser/pgen && \ mv python hostpython && \ mv Parser/pgen Parser/hostpgen && \ - -$(MAKE) distclean \ + $(MAKE) distclean \ ) && \ touch $@ |