Date: Mon, 24 Apr 2023 21:05:30 GMT From: John Baldwin <jhb@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 77d2a2d065cb - main - depend-cleanup.sh: Handle kqueue1() becoming a wrapper around kqueuex(). Message-ID: <202304242105.33OL5UMh012475@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=77d2a2d065cb35fb848faf2253c30eaeee33c784 commit 77d2a2d065cb35fb848faf2253c30eaeee33c784 Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2023-04-24 21:05:18 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2023-04-24 21:05:18 +0000 depend-cleanup.sh: Handle kqueue1() becoming a wrapper around kqueuex(). For a brief period kqueue1() was a system call and stale dependencies cause it to not be re-built. --- tools/build/depend-cleanup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/build/depend-cleanup.sh b/tools/build/depend-cleanup.sh index 91b14ed29c84..f047553c377f 100755 --- a/tools/build/depend-cleanup.sh +++ b/tools/build/depend-cleanup.sh @@ -112,3 +112,6 @@ clean_dep usr.sbin/config mkmakefile c # 20230209 83d7ed8af3d9 convert to main.cc and mkoptions.cc clean_dep usr.sbin/config main c clean_dep usr.sbin/config mkoptions c + +# 20230401 54579376c05e kqueue1 from syscall to C wrapper +clean_dep lib/libc kqueue1 S
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202304242105.33OL5UMh012475>