Date: Mon, 12 Jan 2026 16:48:45 +0100 From: Kristof Provost <kp@FreeBSD.org> To: Christos Margiolis <christos@FreeBSD.org> Cc: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: Re: git: f74f891581bc - main - src.opts: Introduce MK_SOUND Message-ID: <FD45EFA0-B141-4CC1-B009-B68BFCF6DD4C@FreeBSD.org> In-Reply-To: <6965024b.c6cd.6cdf7962@gitrepo.freebsd.org>
index | next in thread | previous in thread | raw e-mail
[-- Attachment #1 --] On 12 Jan 2026, at 15:16, Christos Margiolis wrote: > The branch main has been updated by christos: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=f74f891581bc4df20431607de9b761107f6a0aa7 > > commit f74f891581bc4df20431607de9b761107f6a0aa7 > Author: Christos Margiolis <christos@FreeBSD.org> > AuthorDate: 2026-01-12 14:16:35 +0000 > Commit: Christos Margiolis <christos@FreeBSD.org> > CommitDate: 2026-01-12 14:16:35 +0000 > > src.opts: Introduce MK_SOUND > > PR: 291853 > Sponsored by: The FreeBSD Foundation > MFC after: 1 week > Reviewed by: zarychtam_plan-b.pwste.edu.pl, markj > Differential Revision: https://reviews.freebsd.org/D54456 > --- This seems to fail to build for me: … install -U -o root -g wheel -m 444 libmd.so.7.debug /usr/obj/usr/src/amd64.amd64/tmp/usr/lib/debug/lib/libmd.so.7.debug make[4]: Graph cycles through `realinstall_subdir_lib/libmixer' `afterinstall' was not built (deferred, type OP_DEPENDS|OP_DEPS_FOUND|OP_MARK, flags REMAKE|DONE_WAIT|DONECYCLE)! `afterinstall' has .ORDER dependency on realinstall (deferred, type OP_DEPENDS|OP_PHONY|OP_DEPS_FOUND|OP_MARK, flags REMAKE|CHILDMADE|FORCE|DONE_WAIT|DONE_ORDER|CYCLE|DONECYCLE) make[3]: stopped making "_generic_libs" in /usr/src make[2]: stopped making "libraries" in /usr/src 162.69 real 1395.37 user 632.74 sys make[1]: stopped making "buildworld" in /usr/src make: stopped making "buildworld buildkernel" in /usr/src This is enough to avoid the problem, but clearly not a fix: diff --git a/lib/Makefile b/lib/Makefile index d06488a33fb9..bf8f2c386f64 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -73,7 +73,6 @@ SUBDIR= ${SUBDIR_BOOTSTRAP} \ liblzma \ libmemstat \ libmd \ - libmixer \ libmt \ lib80211 \ libnetbsd \ Best regards, Kristof [-- Attachment #2 --] <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8"> </head> <body><div style="font-family: sans-serif;"><div class="markdown" style="white-space: normal;"> <p dir="auto">On 12 Jan 2026, at 15:16, Christos Margiolis wrote:</p> <blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #136BCE; color: #136BCE;"> <p dir="auto">The branch main has been updated by christos:</p> <p dir="auto">URL: <a href="https://cgit.FreeBSD.org/src/commit/?id=f74f891581bc4df20431607de9b761107f6a0aa7">https://cgit.FreeBSD.org/src/commit/?id=f74f891581bc4df20431607de9b761107f6a0aa7</a></p> <p dir="auto">commit f74f891581bc4df20431607de9b761107f6a0aa7<br> Author: Christos Margiolis <a href="mailto:christos@FreeBSD.org">christos@FreeBSD.org</a><br> AuthorDate: 2026-01-12 14:16:35 +0000<br> Commit: Christos Margiolis <a href="mailto:christos@FreeBSD.org">christos@FreeBSD.org</a><br> CommitDate: 2026-01-12 14:16:35 +0000</p> <pre style="margin-left: 15px; margin-right: 15px; padding: 5px; border: thin solid gray; overflow-x: auto; max-width: 90vw; background-color: #E4E4E4;"><code style="padding: 0 0.25em; background-color: #E4E4E4;">src.opts: Introduce MK_SOUND PR: 291853 Sponsored by: The FreeBSD Foundation MFC after: 1 week Reviewed by: zarychtam_plan-b.pwste.edu.pl, markj Differential Revision: https://reviews.freebsd.org/D54456 </code></pre> <hr> </blockquote> <p dir="auto">This seems to fail to build for me:</p> <pre style="margin-left: 15px; margin-right: 15px; padding: 5px; border: thin solid gray; overflow-x: auto; max-width: 90vw; background-color: #E4E4E4;"><code style="padding: 0 0.25em; background-color: #E4E4E4;">… install -U -o root -g wheel -m 444 libmd.so.7.debug /usr/obj/usr/src/amd64.amd64/tmp/usr/lib/debug/lib/libmd.so.7.debug make[4]: Graph cycles through `realinstall_subdir_lib/libmixer' `afterinstall' was not built (deferred, type OP_DEPENDS|OP_DEPS_FOUND|OP_MARK, flags REMAKE|DONE_WAIT|DONECYCLE)! `afterinstall' has .ORDER dependency on realinstall (deferred, type OP_DEPENDS|OP_PHONY|OP_DEPS_FOUND|OP_MARK, flags REMAKE|CHILDMADE|FORCE|DONE_WAIT|DONE_ORDER|CYCLE|DONECYCLE) make[3]: stopped making "_generic_libs" in /usr/src make[2]: stopped making "libraries" in /usr/src 162.69 real 1395.37 user 632.74 sys make[1]: stopped making "buildworld" in /usr/src make: stopped making "buildworld buildkernel" in /usr/src </code></pre> <p dir="auto">This is enough to avoid the problem, but clearly not a fix:</p> <pre style="margin-left: 15px; margin-right: 15px; padding: 5px; border: thin solid gray; overflow-x: auto; max-width: 90vw; background-color: #E4E4E4;"><code style="padding: 0 0.25em; background-color: #E4E4E4;">diff --git a/lib/Makefile b/lib/Makefile index d06488a33fb9..bf8f2c386f64 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -73,7 +73,6 @@ SUBDIR= ${SUBDIR_BOOTSTRAP} \ liblzma \ libmemstat \ libmd \ - libmixer \ libmt \ lib80211 \ libnetbsd \ </code></pre> <p dir="auto">Best regards,<br> Kristof</p> </div> </div> </body> </html>home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?FD45EFA0-B141-4CC1-B009-B68BFCF6DD4C>
