From: Bruce Richardson Date: Fri, 15 Jan 2021 11:10:47 +0000 (+0000) Subject: app: fix build with extra include paths X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=64fd2124301eb246f12c316f9f619e36cf6d1bdc;p=dpdk.git app: fix build with extra include paths The "includes" variable in the app/meson.build file was ignored when building the executable, meaning that apps couldn't pass additional include paths directly back. Fix this to align with drivers and libs. Fixes: fa036e70d794 ("app: generalize meson build") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Reviewed-by: David Marchand --- diff --git a/app/meson.build b/app/meson.build index 903117b866..87fc195dbf 100644 --- a/app/meson.build +++ b/app/meson.build @@ -66,6 +66,7 @@ foreach app:apps link_args: ldflags, link_whole: link_libs, dependencies: dep_objs, + include_directories: includes, install_rpath: join_paths(get_option('prefix'), driver_install_path), install: true)