summaryrefslogtreecommitdiffstats
path: root/rules/host-python-setuptools.make
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2015-06-03 20:52:56 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2015-06-03 20:54:16 +0200
commit0b9d36991367e2fcb03c2029e46a99e625e26a05 (patch)
treeaf20b5e7cf032b0fe8bee91fb0cf5195a349c863 /rules/host-python-setuptools.make
parent5a9c4e406f8904389e87042cf339bc0803b0b275 (diff)
downloadptxdist-0b9d36991367e2fcb03c2029e46a99e625e26a05.tar.gz
ptxdist-0b9d36991367e2fcb03c2029e46a99e625e26a05.tar.xz
host-python-setuptools: fix name clash
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/host-python-setuptools.make')
-rw-r--r--rules/host-python-setuptools.make6
1 files changed, 2 insertions, 4 deletions
diff --git a/rules/host-python-setuptools.make b/rules/host-python-setuptools.make
index 040eaa619..c6f97e6a4 100644
--- a/rules/host-python-setuptools.make
+++ b/rules/host-python-setuptools.make
@@ -25,8 +25,6 @@ HOST_PYTHON_SETUPTOOLS_SOURCE := $(SRCDIR)/$(HOST_PYTHON_SETUPTOOLS).$(HOST_PYTH
HOST_PYTHON_SETUPTOOLS_DIR := $(HOST_BUILDDIR)/$(HOST_PYTHON_SETUPTOOLS)
HOST_PYTHON_SETUPTOOLS_LICENSE := PSF, ZPL
-HOST_PYTHON = $(PTXCONF_SYSROOT_HOST)/bin/python$(PYTHON_MAJORMINOR)
-
# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------
@@ -40,7 +38,7 @@ HOST_PYTHON_SETUPTOOLS_CONF_TOOL := NO
$(STATEDIR)/host-python-setuptools.compile:
@$(call targetinfo)
@cd $(HOST_PYTHON_SETUPTOOLS_DIR)/$(HOST_PYTHON_SETUPTOOLS_SUBDIR) && \
- $(HOST_ENV) $(HOST_PYTHON) \
+ $(HOST_ENV) $(PTXCONF_SYSROOT_HOST)/bin/python$(PYTHON_MAJORMINOR) \
setup.py build
@$(call touch)
@@ -51,7 +49,7 @@ $(STATEDIR)/host-python-setuptools.compile:
$(STATEDIR)/host-python-setuptools.install:
@$(call targetinfo)
@cd $(HOST_PYTHON_SETUPTOOLS_DIR)/$(HOST_PYTHON_SETUPTOOLS_SUBDIR) && \
- $(HOST_ENV) $(HOST_PYTHON) \
+ $(HOST_ENV) $(PTXCONF_SYSROOT_HOST)/bin/python$(PYTHON_MAJORMINOR) \
setup.py install --root=$(HOST_PYTHON_SETUPTOOLS_PKGDIR) --prefix=
@$(call touch)