build: create relative symlinks for PMDs in libdir
authorLuca Boccassi <bluca@debian.org>
Wed, 12 Sep 2018 17:21:34 +0000 (18:21 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 17 Sep 2018 11:36:52 +0000 (13:36 +0200)
commit983f08969656128bc64a36ce70de6cb44e7bd070
treeed20c86b2f82c3d609fd7050b6f2ae6706645c23
parent54d609a13876a80bb791726e91e631262f1921a1
build: create relative symlinks for PMDs in libdir

Add -r option to ln, otherwise the link will be absolute and contain
the build path and break packaging among other things:

lrwxrwxrwx 1 bluca bluca     99 Sep 11 22:17 librte_mempool_dpaa.so.1.1
  -> /home/bluca/git/dpdk/testt4//usr/local/lib/x86_64-linux-gnu/dpdk/
     drivers/librte_mempool_dpaa.so.1.1

With -r:

lrwxrwxrwx 1 bluca bluca     35 Sep 12 18:13 librte_pmd_zlib.so.1.1
  -> dpdk/drivers/librte_pmd_zlib.so.1.1

Fixes: ed4d43d73e2b ("build: symlink drivers to library directory")
Cc: stable@dpdk.org
Signed-off-by: Luca Boccassi <bluca@debian.org>
Tested-by: Timothy Redaelli <tredaelli@redhat.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
buildtools/symlink-drivers-solibs.sh