summaryrefslogtreecommitdiff
path: root/etc/rc
diff options
context:
space:
mode:
authorkn <kn@cvs.openbsd.org>2019-02-24 12:57:15 +0000
committerkn <kn@cvs.openbsd.org>2019-02-24 12:57:15 +0000
commit64a1c6a0200f45f985fe6a2de7deb562e1f4bf48 (patch)
tree1d49b3926bf4f0b0893ce354dfee0af38e5905d9 /etc/rc
parent3a7613c146418d15042d6f3d2334b04f007f4096 (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/rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc b/etc/rc
index eab4aca0a8e..a3ce6e3c0ef 100644
--- a/etc/rc
+++ b/etc/rc
@@ -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}