commit 7abd29bc7c88eecaaeb5ce4020b975bd240d4a75
parent 8fec0e4eb29ab2b049545d2af341745f47a13d8d
Author: Hannu Nyman <hannu.nyman@iki.fi>
Date: Fri, 16 Dec 2016 10:41:49 +0200
Merge pull request #3659 from jow-/python-move-includes
python: move includes after common package variables
Diffstat:
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/lang/python/Makefile b/lang/python/Makefile
@@ -10,12 +10,6 @@ include $(TOPDIR)/rules.mk
# For PYTHON_VERSION
include ./files/python-version.mk
-# This file provides the necsessary host build variables
-include ./files/python-host.mk
-
-# For PyPackage
-include ./files/python-package.mk
-
PKG_NAME:=python
PKG_VERSION:=$(PYTHON_VERSION).$(PYTHON_VERSION_MICRO)
PKG_RELEASE:=2
@@ -27,6 +21,12 @@ PKG_MD5SUM:=57dffcee9cee8bb2ab5f82af1d8e9a69
PKG_LICENSE:=PSF
PKG_LICENSE_FILES:=LICENSE Modules/_ctypes/libffi_msvc/LICENSE Modules/_ctypes/darwin/LICENSE Modules/_ctypes/libffi/LICENSE Modules/_ctypes/libffi_osx/LICENSE Tools/pybench/LICENSE
+# This file provides the necsessary host build variables
+include ./files/python-host.mk
+
+# For PyPackage
+include ./files/python-package.mk
+
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
HOST_BUILD_PARALLEL:=1