Date: Fri, 1 Apr 2022 09:50:31 -0400 From: Ed Maste <emaste@freebsd.org> To: FreeBSD User <freebsd@walstatt-de.de> Cc: freebsd-current <freebsd-current@freebsd.org> Subject: Re: CURRENT: can't build 13-STABLE anymore: cp: [vdso]: No such file or directory *** Error Message-ID: <CAPyFy2DmtRpFLhSqYjAwcVnGj4On7UbWssRVBFv0fBC2KX54UA@mail.gmail.com> In-Reply-To: <20220401145257.7317e887@freyja> References: <20220401145257.7317e887@freyja>
next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 1 Apr 2022 at 08:54, FreeBSD User <freebsd@walstatt-de.de> wrote: > > On 14.0-CURRENT #134 main-n253938-4ef6e56ae80: Thu Mar 24 16:11:07 CET 2022 > amd64, it is without any problem possible to build most recent 13-STABLE > sources as of today (stable/13-n250195-26e8bb3a4e1). > > On 14.0-CURRENT #18 main-n254160-4fc5a607fdf: Fri Apr 1 08:30:10 CEST 2022 > amd64 this is not possible anymore Could you give this patch a try? diff --git a/Makefile.inc1 b/Makefile.inc1 index c91034ed42fe..bd58f48a64d2 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1366,6 +1366,9 @@ distributeworld installworld stageworld: _installcheck_world .PHONY libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \ while read line; do \ set -- $$line; \ + if [ "$$1" = "[preloaded]"; then \ + break; \ + fi \ if [ "$$2 $$3" != "not found" ]; then \ echo $$2; \ else \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAPyFy2DmtRpFLhSqYjAwcVnGj4On7UbWssRVBFv0fBC2KX54UA>