107b23819d
This symlink got lost in the transition to meson. X-Gentoo-Bug: 850754 X-Gentoo-Bug-URL: https://bugs.gentoo.org/850754
19 lines
401 B
Bash
Executable File
19 lines
401 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -u
|
|
|
|
rc_libexecdir="$1"
|
|
sbindir="$2"
|
|
os="$3"
|
|
sysvinit="$4"
|
|
|
|
if [ "${os}" != Linux ]; then
|
|
install -d "${DESTDIR}/${rc_libexecdir}"/init.d
|
|
fi
|
|
install -d "${DESTDIR}/${rc_libexecdir}"/tmp
|
|
install -m 644 "${MESON_BUILD_ROOT}/src/shared/version" "${DESTDIR}/${rc_libexecdir}"
|
|
if [ "${os}" = Linux ] && [ "${sysvinit}" = yes ]; then
|
|
ln -s openrc-init "${DESTDIR}/${sbindir}"/init
|
|
fi
|