patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH 18.11] eal: fix parallel build
@ 2020-10-29 12:25 David Marchand
  2020-10-30 13:08 ` Kevin Traynor
  0 siblings, 1 reply; 2+ messages in thread
From: David Marchand @ 2020-10-29 12:25 UTC (permalink / raw)
  To: ktraynor, alialnu; +Cc: stable, thomas, bruce.richardson

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@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


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-10-30 13:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-29 12:25 [dpdk-stable] [PATCH 18.11] eal: fix parallel build David Marchand
2020-10-30 13:08 ` Kevin Traynor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).