Ensure symbolic links have absolute targets

Fixes #21.
pull/46/head
Sebastian Schuberth 9 years ago
parent 84b0eeab90
commit 9cd59f05f8

@ -87,9 +87,9 @@ make_uninstall () {
make_link () {
make_uninstall
ln -s "$BIN" "$PREFIX/bin/$BIN"
ln -s "$PWD/$BIN" "$PREFIX/bin/$BIN"
for cmd in $CMDS; do
ln -s "$BIN-$cmd" "$PREFIX/bin"
ln -s "$PWD/$BIN-$cmd" "$PREFIX/bin"
done
return $?
}

Loading…
Cancel
Save