[v3,1/2] Fix build of apps with external dependencies

Message ID 20200709092711.14900-2-felix.moessbauer@siemens.com (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series Add l2reflect measurement application |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-broadcom-Performance success Performance Testing PASS
ci/iol-testing fail Testing issues
ci/Intel-compilation fail Compilation issues
ci/iol-intel-Performance success Performance Testing PASS

Commit Message

Moessbauer, Felix July 9, 2020, 9:27 a.m. UTC
  This fix initializes the dependency object with the external
dependency list. Previously, the external dependencies were
just ignored.

Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
---
 app/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/app/meson.build b/app/meson.build
index 585b90832..a29eba024 100644
--- a/app/meson.build
+++ b/app/meson.build
@@ -42,7 +42,7 @@  foreach app:apps
 	subdir(name)
 
 	if build
-		dep_objs = []
+		dep_objs = ext_deps
 		foreach d:deps
 			dep_objs += get_variable(get_option('default_library')
 				 + '_rte_' + d)