diff options
author | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2019-02-20 08:50:01 +0000 |
---|---|---|
committer | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2019-02-20 08:50:01 +0000 |
commit | b5009c37c3e8c348ec1f64aee29fd2d736b4794a (patch) | |
tree | bf3358dc8e27d706055ca73cb49c6f44966e288e /usr.sbin | |
parent | 32164af9a2f55fae02376bc3c7e058ce09c29571 (diff) |
Drop '-S' knob from install(1). It's the default and a no-op nowadays.
ok deraadt@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/syspatch/syspatch.sh | 4 |
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 } |