1
0
Fork 0

Merge pull request #634 from igorw/bin-relative-symlink

[Installer] Make bin symlinks relative, closes #620
pull/642/head
Jordi Boggiano 2012-04-27 08:09:03 -07:00
commit 41bd845c54
1 changed files with 5 additions and 2 deletions

View File

@ -168,14 +168,17 @@ class LibraryInstaller implements InstallerInterface
}
file_put_contents($link, $this->generateWindowsProxyCode($bin, $link));
} else {
$cwd = getcwd();
try {
// under linux symlinks are not always supported for example
// when using it in smbfs mounted folder
symlink($bin, $link);
$relativeBin = $this->filesystem->findShortestPath($link, $bin);
chdir(dirname($link));
symlink($relativeBin, $link);
} catch (\ErrorException $e) {
file_put_contents($link, $this->generateUnixyProxyCode($bin, $link));
}
chdir($cwd);
}
chmod($link, 0777 & ~umask());
}