python,python3: fix recursive deps caused by dangling DEPENDS

For python `src` packages we should clear out the DEPENDS
to prevent recursive deps from happening.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
Alexandru Ardelean 2018-01-17 17:30:48 +02:00
parent c4ff2d6c5e
commit 6494642caf
2 changed files with 2 additions and 0 deletions

View File

@ -39,6 +39,7 @@ define PyPackage
define Package/$(1)-src
$(call Package/$(1))
DEPENDS:=
TITLE+= (sources)
endef

View File

@ -38,6 +38,7 @@ define Py3Package
define Package/$(1)-src
$(call Package/$(1))
DEPENDS:=
TITLE+= (sources)
endef