From: Peter Korsgaard Date: Mon, 16 Jun 2008 11:15:51 +0000 (-0000) Subject: python: fix hostpython target. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2b57bfa36516a30eae68f9941f0ac7ec3d55117c;p=buildroot.git python: fix hostpython target. Remove invalid hyphen in front of -$(MAKE) in the middle of a subshell Patch by Conrad Parker. --- diff --git a/package/python/python.mk b/package/python/python.mk index 82c938e9f5..53d59c812f 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 $@