1
0
Fork 0
util-linux/tools/meson-make-symlink.sh
Daniel Baumann c36e531662
Adding upstream version 2.41.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 11:26:35 +02:00

12 lines
312 B
Bash
Executable file

#!/bin/sh
set -eu
# 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 -fs -T "$1" "${DESTDIR:-}$2"
else
ln -fs -T --relative "${DESTDIR:-}$1" "${DESTDIR:-}$2"
fi