diff options
author | Samuel Martin <s.martin49@gmail.com> | 2014-04-15 00:09:49 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-15 23:18:20 +0200 |
commit | 537ec1c3c88e4fb9f5ae9f9d2f1667a7b1ce2a60 (patch) | |
tree | 3296892671d8033e242017bb99b8d3e114dbeb5a /package/python-pyrex | |
parent | 40218a16526946f35dab0d05f379f71a01f29530 (diff) | |
download | buildroot-537ec1c3c88e4fb9f5ae9f9d2f1667a7b1ce2a60.tar.gz buildroot-537ec1c3c88e4fb9f5ae9f9d2f1667a7b1ce2a60.zip |
host-python-pyrex: use the HOST_*_NEEDS_HOST_PYTHON infrastructure
python-pyrex does not support python3.
So, using the *_NEEDS_HOST_PYTHON infrastructure will make sure we won't try
building it for python3. Besides, it will automatically take care of adding the
right host-python package to the dependency list.
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-pyrex')
-rw-r--r-- | package/python-pyrex/python-pyrex.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/python-pyrex/python-pyrex.mk b/package/python-pyrex/python-pyrex.mk index 73cb16382b..7f424ad350 100644 --- a/package/python-pyrex/python-pyrex.mk +++ b/package/python-pyrex/python-pyrex.mk @@ -7,9 +7,9 @@ PYTHON_PYREX_VERSION = 0.9.9 PYTHON_PYREX_SOURCE = Pyrex-$(PYTHON_PYREX_VERSION).tar.gz PYTHON_PYREX_SITE = http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/ -PYTHON_PYREX_DEPENDENCIES = host-python PYTHON_PYREX_LICENSE = Apache-v2 PYTHON_PYREX_LICENSE_FILES = LICENSE.txt PYTHON_PYREX_SETUP_TYPE = distutils +HOST_PYTHON_PYREX_NEEDS_HOST_PYTHON = python2 $(eval $(host-python-package)) |