buildtools: allow symlinks within a source directory
authorBruce Richardson <bruce.richardson@intel.com>
Mon, 23 Jan 2017 12:11:28 +0000 (12:11 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 29 Jan 2017 21:36:23 +0000 (22:36 +0100)
commit7a514a0070e871f8383c6839b90d2714ecc90e18
treedb79a693a2702efdbf9dc840feae88fb12f71976
parent9759f4cc5a85e04c6bd1876c9f2bfadb7607a062
buildtools: allow symlinks within a source directory

When creating the symlinks for header files to the include folder, the
relpath script dereferenced all symlinks. This made it impossible to
have file A.h renamed to B.h and then symlinked back to its original
name. This is useful to be able to do when refactoring or reworking
a library. Change this so that we just use the dirname of the path from
readlink, we can use the basename as it was originally, even if it was a
symlink.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
buildtools/relpath.sh