diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-13 19:27:27 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-13 19:27:27 +0200 |
commit | 38aef10ee715edb213a6b61c9d19fc74d4e5f1f4 (patch) | |
tree | bd71217074dfa01583cf636961969ac2169b5f6e /package/python-twisted | |
parent | 58e07385cf9c376bfcf5dee87e4537205a5fbf86 (diff) | |
download | buildroot-38aef10ee715edb213a6b61c9d19fc74d4e5f1f4.tar.gz buildroot-38aef10ee715edb213a6b61c9d19fc74d4e5f1f4.zip |
python-twisted: add missing dependency on host-python-incremental
The recent change on PYTHONPATH for Python 2.x has revealed a missing
dependency in the python-twisted package. The incremental Python
module is listed in both setup_requires and install_requires, so we
must depend on both its target *and* host variants.
Fixes:
http://autobuild.buildroot.net/results/386bf87abba550b5477d5e15e57981b8c3cef8d6/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-twisted')
-rw-r--r-- | package/python-twisted/python-twisted.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/python-twisted/python-twisted.mk b/package/python-twisted/python-twisted.mk index b167a0f3b8..9b3ced57b9 100644 --- a/package/python-twisted/python-twisted.mk +++ b/package/python-twisted/python-twisted.mk @@ -10,6 +10,6 @@ PYTHON_TWISTED_SITE = https://pypi.python.org/packages/d2/5d/ed5071740be94da6255 PYTHON_TWISTED_SETUP_TYPE = setuptools PYTHON_TWISTED_LICENSE = MIT PYTHON_TWISTED_LICENSE_FILES = LICENSE -PYTHON_TWISTED_DEPENDENCIES = python-incremental +PYTHON_TWISTED_DEPENDENCIES = python-incremental host-python-incremental $(eval $(python-package)) |