diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-15 21:07:51 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-15 21:07:51 +0300 |
commit | ebe9a0d868940a4008e5f25029d2a22274415ded (patch) | |
tree | 90ddd2229866915e4ddc997ee32e780caff73720 /core/sysmgr | |
parent | 155693efb8c44f1b0169c1b348e6be93a24922de (diff) | |
download | repository-ebe9a0d868940a4008e5f25029d2a22274415ded.tar.gz |
sysmgr: portable install calls
Diffstat (limited to 'core/sysmgr')
-rwxr-xr-x | core/sysmgr/build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/sysmgr/build b/core/sysmgr/build index 9ca3c9a6..d62e8832 100755 --- a/core/sysmgr/build +++ b/core/sysmgr/build @@ -1,4 +1,5 @@ #!/bin/sh -e make DESTDIR="$1" PREFIX=/usr install -install -Dm644 -t "$1/etc/init" sysmgr.boot sysmgr.pre.shutdown +install -Dm644 sysmgr.boot "$1/etc/init/sysmgr.boot" +install -Dm644 sysmgr.pre.shutdown "$1/etc/init/sysmgr.pre.shutdown" |