mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-12 23:03:29 +08:00
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 <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
7e960dc9da
commit
6f8c855697
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user