From 816f498355bfbe45c10e3f3d9dd34a9506d77283 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Tue, 1 Dec 2015 20:05:08 -0800 Subject: [PATCH] app/cmdline_test: add missing dependencies The cmdline test is missing a necessary dependency on other components. This caused a build failure when doing parallel builds. Signed-off-by: Stephen Hemminger Acked-by: Declan Doherty --- app/cmdline_test/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/cmdline_test/Makefile b/app/cmdline_test/Makefile index e9eafd2de6..c6169f56dd 100644 --- a/app/cmdline_test/Makefile +++ b/app/cmdline_test/Makefile @@ -47,6 +47,9 @@ SRCS-y += commands.c CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) +# this application needs libraries first +DEPDIRS-y += lib drivers + include $(RTE_SDK)/mk/rte.app.mk endif -- 2.20.1