python-numpy: redefine the target-specific RDEPENDS items
For some reason, even though the general RDEPENDS for this package is correct, all items are overwritten by the empty class-native version of RDEPENDS, even when building for the target. Because of this, whenever this python module is installed and used, it won't work. Redefine the dependencies needed by the target until the issue is fixed upstream. https://jira.digi.com/browse/DEL-6553 Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
parent
263818846f
commit
971fed2724
|
|
@ -0,0 +1,25 @@
|
|||
# Copyright (C) 2019 Digi International Inc.
|
||||
|
||||
# Re-add the base RDEPENDS to class-target since they are being overwritten in the
|
||||
# original recipe
|
||||
RDEPENDS_${PN}_class-target_append = " \
|
||||
${PYTHON_PN}-unittest \
|
||||
${PYTHON_PN}-difflib \
|
||||
${PYTHON_PN}-pprint \
|
||||
${PYTHON_PN}-pickle \
|
||||
${PYTHON_PN}-shell \
|
||||
${PYTHON_PN}-nose \
|
||||
${PYTHON_PN}-doctest \
|
||||
${PYTHON_PN}-datetime \
|
||||
${PYTHON_PN}-distutils \
|
||||
${PYTHON_PN}-misc \
|
||||
${PYTHON_PN}-mmap \
|
||||
${PYTHON_PN}-netclient \
|
||||
${PYTHON_PN}-numbers \
|
||||
${PYTHON_PN}-pydoc \
|
||||
${PYTHON_PN}-pkgutil \
|
||||
${PYTHON_PN}-email \
|
||||
${PYTHON_PN}-compression \
|
||||
${PYTHON_PN}-ctypes \
|
||||
${PYTHON_PN}-threading \
|
||||
"
|
||||
Loading…
Reference in New Issue