scripts: fix build in a symlinked directory
authorOlivier Matz <olivier.matz@6wind.com>
Tue, 5 May 2015 09:00:09 +0000 (11:00 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 12 May 2015 12:13:42 +0000 (14:13 +0200)
commit8c0eca54cd56bb670a028a4ada907ec9610e5d9c
tree4c696c3f105ce21e10c45824223ab4b47e83aa55
parent1e38a7c669235c98d822bcfd2068ecd91ff990c1
scripts: fix build in a symlinked directory

The script relpath.sh returns the relative path of the first directory
from the second directory. It is used to generate relative symlinks,
which can be useful if the build directory is embedded in the dpdk
directory: the whole dpdk can be moved without breaking the links,
which is helpful for an installation.

In case the build directory is a symlink, the script was not generating
the proper relative path. Fix this by calling "readlink -f" on the
arguments.

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Tested-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
scripts/relpath.sh