Merge pull request #5457 from jefferyto/python-pkg-setup-args-vars

python,python3: add vars to customize setup arguments / variables
This commit is contained in:
Hannu Nyman
2018-01-17 16:07:41 +02:00
committed by GitHub
2 changed files with 10 additions and 2 deletions

View File

@@ -114,13 +114,17 @@ define Build/Compile/Py3Mod
find $(PKG_INSTALL_DIR) -name "*\.exe" | xargs rm -f
endef
PYTHON3_PKG_SETUP_ARGS:=--single-version-externally-managed
PYTHON3_PKG_SETUP_VARS:=
define Py3Build/Compile/Default
$(foreach pkg,$(HOST_PYTHON3_PACKAGE_BUILD_DEPENDS),
$(call host_python3_pip_install_host,$(pkg))
)
$(call Build/Compile/Py3Mod,, \
install --prefix="/usr" --root="$(PKG_INSTALL_DIR)" \
--single-version-externally-managed \
$(PYTHON3_PKG_SETUP_ARGS), \
$(PYTHON3_PKG_SETUP_VARS) \
)
endef