Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/build-aux/meson-make-symlink.sh
blob: 3e3aa7ba20ccd5d6af57a05f3bf0da8309bfbf6a (plain)
1
2
3
4
5
6
7
8
9
10
#!/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")"

rm -f "${DESTDIR:-}$2"
ln -vs "$1" "${DESTDIR:-}$2"