lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit b24ba82cce5d42f6a53c37ec2ac0867da852bcc0
parent 9df630a4f6e90de9b33763e41a964034971798e0
Author: Hannu Nyman <hannu.nyman@iki.fi>
Date:   Mon, 31 Oct 2016 10:05:46 +0200

Merge pull request #3423 from commodo/python-include-host-build

python,python3: include host-build.mk in python-host.mk & python3-package.mk
Diffstat:
Mlang/python/files/python-host.mk | 3+++
Mlang/python3/files/python3-package.mk | 3+++
2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/lang/python/files/python-host.mk b/lang/python/files/python-host.mk @@ -5,6 +5,9 @@ # See /LICENSE for more information. # +# For HOST_BUILD_PREFIX +include $(INCLUDE_DIR)/host-build.mk + HOST_PYTHON_DIR:=$(HOST_BUILD_PREFIX) HOST_PYTHON_INC_DIR:=$(HOST_PYTHON_DIR)/include/python$(PYTHON_VERSION) HOST_PYTHON_LIB_DIR:=$(HOST_PYTHON_DIR)/lib/python$(PYTHON_VERSION) diff --git a/lang/python3/files/python3-package.mk b/lang/python3/files/python3-package.mk @@ -5,6 +5,9 @@ # See /LICENSE for more information. # +# For HOST_BUILD_PREFIX +include $(INCLUDE_DIR)/host-build.mk + PYTHON3_VERSION_MAJOR:=3 PYTHON3_VERSION_MINOR:=5 PYTHON3_VERSION_MICRO:=2