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 <tredaelli@redhat.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
Timothy Redaelli 2017-09-20 18:41:28 +02:00 committed by Bruce Richardson
parent 3e1bb55fd6
commit 147ec15015

View File

@ -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)