From: Alexandru Ardelean Date: Sun, 13 Dec 2015 09:40:11 +0000 (+0200) Subject: python2: fix typo in HostPython function X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=refs%2Fpull%2F2118%2Fhead;p=feed%2Fpackages.git python2: fix typo in HostPython function I call this the curse of the End-Of-The-Year for me. Signed-off-by: Alexandru Ardelean --- diff --git a/lang/python/files/python-host.mk b/lang/python/files/python-host.mk index a40c2a3a28..17038d14d6 100644 --- a/lang/python/files/python-host.mk +++ b/lang/python/files/python-host.mk @@ -12,11 +12,11 @@ HOST_PYTHON_PKG_DIR:=/usr/lib/python$(PYTHON_VERSION)/site-packages HOST_PYTHONPATH:=$(HOST_PYTHON_LIB_DIR):$(STAGING_DIR_HOST)/$(HOST_PYTHON_PKG_DIR) define HostPython if [ "$(strip $(3))" == "HOST" ]; then \ - export PYTHONPATH:=$(HOST_PYTHONPATH); \ + export PYTHONPATH="$(HOST_PYTHONPATH)"; \ export _python_sysroot="$(STAGING_DIR_HOST)/usr"; \ else \ - exort PYTHONPATH:=$(PYTHONPATH); \ - export _python_sysroot:=$(STAGING_DIR)/usr; \ + export PYTHONPATH="$(PYTHONPATH)"; \ + export _python_sysroot="$(STAGING_DIR)/usr"; \ fi; \ export PYTHONOPTIMIZE=""; \ export PYTHONDONTWRITEBYTECODE=1; \