summaryrefslogtreecommitdiffstats
path: root/usr.sbin/syspatch/syspatch.sh
diff options
context:
space:
mode:
authorajacoutot <ajacoutot@openbsd.org>2019-02-20 08:50:00 +0000
committerajacoutot <ajacoutot@openbsd.org>2019-02-20 08:50:00 +0000
commit22e4c9c75328b78d2e31a71dae54eb4ddfe4a3ae (patch)
treed2cefd535c4c2a5db523ed34b68d116927b9bf0b /usr.sbin/syspatch/syspatch.sh
parentAdd support for current limit regulators in addition to the voltage (diff)
downloadwireguard-openbsd-22e4c9c75328b78d2e31a71dae54eb4ddfe4a3ae.tar.xz
wireguard-openbsd-22e4c9c75328b78d2e31a71dae54eb4ddfe4a3ae.zip
Drop '-S' knob from install(1). It's the default and a no-op nowadays.
ok deraadt@
Diffstat (limited to 'usr.sbin/syspatch/syspatch.sh')
-rw-r--r--usr.sbin/syspatch/syspatch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/syspatch/syspatch.sh b/usr.sbin/syspatch/syspatch.sh
index 8f57d690753..1b508616e94 100644
--- a/usr.sbin/syspatch/syspatch.sh
+++ b/usr.sbin/syspatch/syspatch.sh
@@ -1,6 +1,6 @@
#!/bin/ksh
#
-# $OpenBSD: syspatch.sh,v 1.142 2019/01/21 23:50:36 ajacoutot Exp $
+# $OpenBSD: syspatch.sh,v 1.143 2019/02/20 08:50:00 ajacoutot Exp $
#
# Copyright (c) 2016, 2017 Antoine Jacoutot <ajacoutot@openbsd.org>
#
@@ -145,7 +145,7 @@ install_file()
ln -sf $(readlink ${_src}) ${_dst}
else
eval $(stat -f "_fmode=%OMp%OLp _fown=%Su _fgrp=%Sg" ${_src})
- install -DFSp -m ${_fmode} -o ${_fown} -g ${_fgrp} ${_src} \
+ install -DFp -m ${_fmode} -o ${_fown} -g ${_fgrp} ${_src} \
${_dst}
fi
}