diff options
author | kn <kn@cvs.openbsd.org> | 2019-02-24 12:57:15 +0000 |
---|---|---|
committer | kn <kn@cvs.openbsd.org> | 2019-02-24 12:57:15 +0000 |
commit | 64a1c6a0200f45f985fe6a2de7deb562e1f4bf48 (patch) | |
tree | 1d49b3926bf4f0b0893ce354dfee0af38e5905d9 /etc/rc | |
parent | 3a7613c146418d15042d6f3d2334b04f007f4096 (diff) |
Remove -S from install commands
As of usr.bin/xinstall/install.c revision 1.68, -S is a no-op and
install(1) will always create files safely, thus clean the option usage
from the tree.
Diff from Lauri Tirkkonen <lotheac at iki dot fi>, thanks.
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.533 2019/02/19 20:41:52 kn Exp $ +# $OpenBSD: rc,v 1.534 2019/02/24 12:57:14 kn Exp $ # System startup script run by init on autoboot or after single-user. # Output and error are redirected to console by init, and the console is the @@ -202,7 +202,7 @@ reorder_libs() { _tmpdir=$(mktemp -dq $_relink/_rebuild.XXXXXXXXXXXX) && ( set -o errexit - _install='install -F -S -o root -g bin -m 0444' + _install='install -F -o root -g bin -m 0444' _lib=${_liba##*/} _lib=${_lib%.a} _lib_dir=${_liba#$_relink} |