From e74a15694ef1b5744d0a7cc937e23021926741f3 Mon Sep 17 00:00:00 2001 From: Shreyansh Jain Date: Mon, 15 Oct 2018 17:31:53 +0530 Subject: [PATCH] drivers: add common as dependency for bus Prior to this patch, bus and common compiled parallel. But, post this dependency is created. This is especially important for the DPAA/FSLMC buses which are going to use the common/dpaax library. Signed-off-by: Shreyansh Jain --- drivers/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/Makefile b/drivers/Makefile index 75660765e7..7d5da5d9f5 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -5,6 +5,7 @@ include $(RTE_SDK)/mk/rte.vars.mk DIRS-y += common DIRS-y += bus +DEPDIRS-bus := common DIRS-y += mempool DEPDIRS-mempool := common bus DIRS-y += net -- 2.20.1