From 147ec15015263d3f209511977753acd301604e69 Mon Sep 17 00:00:00 2001 From: Timothy Redaelli Date: Wed, 20 Sep 2017 18:41:28 +0200 Subject: [PATCH] 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 --- app/test-pmd/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.20.1