From: Thomas Petazzoni Date: Thu, 13 Feb 2014 20:48:54 +0000 (+0100) Subject: pkg-python: simplifications after the Python 2.x bump X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6f8c85569739492ffc8c3b1e04b4ae007e5cb02a;p=buildroot.git pkg-python: simplifications after the Python 2.x bump Thanks to the Python 2.x bump, it is no longer needed to pass PYTHONCPREFIX, and CROSS_COMPILING when building third-party Python modules. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/package/pkg-python.mk b/package/pkg-python.mk index c423f7a5e2..a8628953bd 100644 --- a/package/pkg-python.mk +++ b/package/pkg-python.mk @@ -27,7 +27,6 @@ PKG_PYTHON_DISTUTILS_ENV = \ CFLAGS="$(TARGET_CFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" \ LDSHARED="$(TARGET_CROSS)gcc -shared" \ - CROSS_COMPILING=yes \ PYTHONPATH="$(PYTHON_PATH)" \ _python_sysroot=$(STAGING_DIR) \ _python_prefix=/usr \ @@ -50,8 +49,6 @@ HOST_PKG_PYTHON_DISTUTILS_INSTALL_OPT = \ PKG_PYTHON_SETUPTOOLS_ENV = \ PATH="$(TARGET_PATH)" \ PYTHONPATH="$(PYTHON_PATH)" \ - PYTHONXCPREFIX="$(STAGING_DIR)/usr/" \ - CROSS_COMPILING=yes \ _python_sysroot=$(STAGING_DIR) \ _python_prefix=/usr \ _python_exec_prefix=/usr @@ -64,8 +61,7 @@ PKG_PYTHON_SETUPTOOLS_INSTALL_OPT = \ # Host setuptools-based packages HOST_PKG_PYTHON_SETUPTOOLS_ENV = \ - PATH="$(HOST_PATH)" \ - PYTHONXCPREFIX="$(HOST_DIR)/usr/" + PATH="$(HOST_PATH)" HOST_PKG_PYTHON_SETUPTOOLS_INSTALL_OPT = \ --prefix=$(HOST_DIR)/usr