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