python3: avoid use of HOST_BUILD_PREFIX 3433/head
authorJo-Philipp Wich <jo@mein.io>
Tue, 1 Nov 2016 11:53:30 +0000 (12:53 +0100)
committerJo-Philipp Wich <jo@mein.io>
Tue, 1 Nov 2016 11:57:41 +0000 (12:57 +0100)
commit4a083de4a962b5011eb72c51758f42b07e34c57b
tree52ef7f3c0d3c46d7a670b12e92a6ddd60b80f322
parent73b7f55424de52d8179a9ad808252fe3bf8dcc9d
python3: avoid use of HOST_BUILD_PREFIX

Currently, the python3-package.mk framework relies on HOST_BUILD_PREFIX to
refer to the $(STAGING_DIR)/host directory but using the HOST_BUILD_PREFIX
variable requires the use of include/host-build.mk which in turn includes
python3-package.mk, leading to target redefinition errors.

In order to provide a global, uniform way to refer to the host staging
directory, LEDE introduced a new variable STAGING_DIR_HOSTPKG which points
to $(STAGING_DIR)/host for now with the purpose of eventually being able to
relocate that directory in the future.

This commit changes python3-package.mk to ...
 - stop including include/host-build.mk (revert of #3423)
 - replace usages of $(HOST_BUILD_PREFIX) with $(STAGING_DIR_HOSTPKG)
 - warn and fallback to $(STAGING_DIR)/host if STAGING_DIR_HOSTPKG is
   unavailable

The fallback code will ensure that the python host build infrastructure
continues to work properly on older OpenWrt and LEDE versions until the
STAGING_DIR_HOSTPKG is fully settled in and can be removed some time
in the future.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
lang/python3/files/python3-package.mk