commit 4f5d48c242548fa255010257d6ccc0b65b695131
parent 7e11077f07cd10f30ce46ffd10746bf646ebcb6a
Author: Jan Pobrislo <ccx@webprojekty.cz>
Date: Mon, 25 Jul 2022 11:25:25 +0200
Install command symlinks for s6-linux-init-maker generated executables
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/install b/install
@@ -30,6 +30,10 @@ install_to_all() {
"Failed to generate s6-rc source directory"
./command/s6-rc-compile ./s6-rc-db ./s6-rc-source || exit $?
./init-maker/install $PWD || exit $?
+ local cmd
+ for cmd in init/bin/*; do
+ s6-ln ../$cmd command/ || $?
+ done
}
typeset -f -t install_to_all