diff --git a/boost.helpers.inc b/boost.helpers.inc index 80d2d16695ccb0791d4748a062e43d69f188a7b1..e7a3f74dad3bc32a5db1b7c1981922b1752df526 100644 --- a/boost.helpers.inc +++ b/boost.helpers.inc @@ -42,8 +42,8 @@ function _boost_symlink($target, $link) { if (!file_exists($target) || !file_exists(dirname($link))) return FALSE; - $target = explode('/', realpath($target)); - $link = explode('/', realpath($link)); + $target = explode('/', $target); + $link = explode('/', $link); // Only bother creating a relative link if the paths are in the same // top-level directory; otherwise just symlink to the absolute path.