From 5605a58d8ce15d6e24ff1b55dae0d428f0901f09 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Tue, 6 Oct 2020 15:52:43 +0300 Subject: runit: make install calls more portable --- core/runit/build | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'core') diff --git a/core/runit/build b/core/runit/build index a8bdb9bb..17aec618 100755 --- a/core/runit/build +++ b/core/runit/build @@ -13,10 +13,15 @@ cd "runit-$2" make - install -Dm755 -t "$1/usr/bin/" chpst runit runit-init runsv runsvchdir runsvdir sv svlogd utmpset + for bin in chpst runit runit-init runsv runsvchdir runsvdir sv svlogd \ + utmpset ../../poweroff ../../reboot; do + install -Dm755 "$bin" "$1/usr/bin/${bin}" + done ) -install -Dm644 -t "$1/usr/share/man/man8" man/* +for manpage in man/*; do + install -Dm644 "$manpage" "$1/usr/share/man/man8/${manpage##*/}" +done mkdir -p "$1/var/service" "$1/etc/runit" ln -s runit-init "$1/usr/bin/init" @@ -24,4 +29,3 @@ ln -s /usr/lib/init/rc.boot "$1/etc/runit/1" ln -s /usr/lib/init/rc.shutdown "$1/etc/runit/3" install -Dm755 ../2 "$1/etc/runit/2" -install -Dm755 -t "$1/usr/bin" ../poweroff ../reboot -- cgit v1.2.3