sync with OpenBSD -current

This commit is contained in:
purplerain 2024-03-30 10:36:50 +00:00
parent 784d5aeff3
commit 38a9ea224a
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
44 changed files with 791 additions and 621 deletions

8
etc/rc
View file

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.572 2023/10/01 20:15:23 naddy Exp $
# $OpenBSD: rc,v 1.573 2024/03/30 07:35:01 deraadt 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
@ -251,7 +251,11 @@ reorder_libs() {
if [[ -f $_bint ]]; then
echo " $_binn"
tar xf $_bint
make -f Makefile.relink relink >/dev/null 2>&1
if [[ -f install.sh ]]; then
sh install.sh >/dev/null 2>&1
else
make -f Makefile.relink relink >/dev/null 2>&1
fi
fi
) || { _error=true; break; }
done