[dpdk-stable] [PATCH 18.11] eal: fix parallel build

David Marchand david.marchand at redhat.com
Thu Oct 29 13:25:50 CET 2020


Parallel build is broken as linuxapp/freebsd have lost the dependency on
installing common headers.
The original commit in the main branch was at fault, but it got hidden
by the commit a083f8cc7746 ("eal: move OS-specific sub-directories").

Fixes: 4a2be43591df ("eal: remove useless makefiles")

Signed-off-by: David Marchand <david.marchand at redhat.com>
---
 lib/librte_eal/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/librte_eal/Makefile b/lib/librte_eal/Makefile
index fd56a69ba3..263c2d0664 100644
--- a/lib/librte_eal/Makefile
+++ b/lib/librte_eal/Makefile
@@ -5,8 +5,8 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 DIRS-y += common
 DIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += linuxapp/eal
-DEPDIRS-linuxapp := common
+DEPDIRS-linuxapp/eal := common
 DIRS-$(CONFIG_RTE_EXEC_ENV_BSDAPP) += bsdapp/eal
-DEPDIRS-bsdapp := common
+DEPDIRS-bsdapp/eal := common
 
 include $(RTE_SDK)/mk/rte.subdir.mk
-- 
2.23.0



More information about the stable mailing list