From: Timothy Redaelli Date: Wed, 20 Sep 2017 16:41:28 +0000 (+0200) Subject: app/testpmd: fix rpath for drivers in meson build X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=147ec15015263d3f209511977753acd301604e69;p=dpdk.git app/testpmd: fix rpath for drivers in meson build This commit fixes the setting of relative rpath on dpdk-testpmd for drivers ($libdir/dpdk/drivers) to the correct absolute rpath ($prefix$libdir/dpdk/drivers) Fixes: a25a650be5f0 ("build: add infrastructure for meson and ninja builds") Signed-off-by: Timothy Redaelli Acked-by: Bruce Richardson --- diff --git a/app/test-pmd/meson.build b/app/test-pmd/meson.build index 396977533f..001d4f663b 100644 --- a/app/test-pmd/meson.build +++ b/app/test-pmd/meson.build @@ -77,5 +77,5 @@ executable('dpdk-testpmd', link_whole: link_libs, dependencies: dep_objs, link_args: eal_extra_link_arg, # add -ldl for linux, -lexecinfo for BSD - install_rpath: driver_install_path, + install_rpath: join_paths(get_option('prefix'), driver_install_path), install: true)