Re: CURRENT: can't build 13-STABLE anymore: cp: [vdso]: No such file or directory *** Error
Date: Fri, 01 Apr 2022 13:50:31 UTC
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 \