mirror of
https://github.com/systemd/systemd.git
synced 2025-01-06 17:18:12 +03:00
7b76fce1a5
v2: - remove bashisms
12 lines
301 B
Bash
12 lines
301 B
Bash
#!/bin/sh -e
|
|
|
|
# this is needed mostly because $DESTDIR is provided as a variable,
|
|
# and we need to create the target directory...
|
|
|
|
mkdir -vp "$(dirname "${DESTDIR}$2")"
|
|
if [ "$(dirname $1)" = . ]; then
|
|
ln -vfs -T "$1" "${DESTDIR}$2"
|
|
else
|
|
ln -vfs -T --relative "${DESTDIR}$1" "${DESTDIR}$2"
|
|
fi
|