git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed655dc
)
app/cmdline_test: add missing dependencies
author
Stephen Hemminger
<stephen@networkplumber.org>
Wed, 2 Dec 2015 04:05:08 +0000
(20:05 -0800)
committer
Thomas Monjalon
<thomas.monjalon@6wind.com>
Wed, 2 Dec 2015 23:02:26 +0000
(
00:02
+0100)
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@networkplumber.org>
Acked-by: Declan Doherty <declan.doherty@intel.com>
app/cmdline_test/Makefile
patch
|
blob
|
history
diff --git
a/app/cmdline_test/Makefile
b/app/cmdline_test/Makefile
index
e9eafd2
..
c6169f5
100644
(file)
--- 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