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 <stephen at networkplumber.org> --- app/cmdline_test/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/cmdline_test/Makefile b/app/cmdline_test/Makefile index e9eafd2..c6169f5 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.1.4