mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
Fix a dependency error in the Makefile of easy-soc-libs package
This commit is contained in:
parent
b480ca039c
commit
7a0e6613b6
1 changed files with 10 additions and 6 deletions
|
|
@ -39,12 +39,6 @@ define Package/libwifi
|
|||
TITLE:= WiFi library (libwifi)
|
||||
endef
|
||||
|
||||
define Package/libdsl
|
||||
$(call Package/easy-soc-libs)
|
||||
TITLE:= XDSL library (libdsl)
|
||||
DEPENDS:=+dsl-cpe-api-vrx +dsl-cpe-fapi
|
||||
endef
|
||||
|
||||
define Package/libethernet
|
||||
$(call Package/easy-soc-libs)
|
||||
TITLE:= Ethernet library (libethernet)
|
||||
|
|
@ -71,10 +65,20 @@ else
|
|||
$(info Unexpected CONFIG_TARGET)
|
||||
endif
|
||||
|
||||
export TARGET_PLATFORM
|
||||
|
||||
ifdef CONFIG_IOP_LLA_LIBS_DEBUG
|
||||
TARGET_CFLAGS += -DIOP_LLA_LIBS_DEBUG
|
||||
endif
|
||||
|
||||
define Package/libdsl
|
||||
$(call Package/easy-soc-libs)
|
||||
TITLE:= XDSL library (libdsl)
|
||||
ifeq ($(TARGET_PLATFORM),INTEL)
|
||||
DEPENDS:=+dsl-cpe-api-vrx +dsl-cpe-fapi
|
||||
endif
|
||||
endef
|
||||
|
||||
subdirs := \
|
||||
$(if $(CONFIG_PACKAGE_libwifi),libwifi) \
|
||||
$(if $(CONFIG_PACKAGE_libdsl),libdsl) \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue