From: Panu Matilainen Date: Tue, 21 Jun 2016 08:11:47 +0000 (+0300) Subject: pipeline: fix truncated dependency list X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=fef3066c40d9641352d938a775e4724f76820314;p=dpdk.git pipeline: fix truncated dependency list In other libraries, dependency list is always appended to, but in commit 6cbf4f75e059 it with an assignment. This causes the librte_eal dependency added in commit 6cbf4f75e059 to get discarded, resulting in missing dependency on librte_eal. Fixes: 6cbf4f75e059 ("mk: fix missing internal dependencies") Signed-off-by: Panu Matilainen Acked-by: Cristian Dumitrescu --- diff --git a/lib/librte_pipeline/Makefile b/lib/librte_pipeline/Makefile index 95387aae37..a8f312810c 100644 --- a/lib/librte_pipeline/Makefile +++ b/lib/librte_pipeline/Makefile @@ -53,7 +53,7 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_PIPELINE)-include += rte_pipeline.h # this lib depends upon: DEPDIRS-$(CONFIG_RTE_LIBRTE_PIPELINE) += lib/librte_eal -DEPDIRS-$(CONFIG_RTE_LIBRTE_PIPELINE) := lib/librte_table +DEPDIRS-$(CONFIG_RTE_LIBRTE_PIPELINE) += lib/librte_table DEPDIRS-$(CONFIG_RTE_LIBRTE_PIPELINE) += lib/librte_port include $(RTE_SDK)/mk/rte.lib.mk