Re: CURRENT: can't build 13-STABLE anymore: cp: [vdso]: No such file or directory *** Error

From: Jens Schweikhardt <schweikh_at_schweikhardt.net>
Date: Fri, 01 Apr 2022 14:00:10 UTC
Hello *,
Looks like a semicolon is missing after the "fi".
Jens

----- Ursprüngliche Mail -----
Von: "Ed Maste" <emaste@freebsd.org>
An: "FreeBSD User" <freebsd@walstatt-de.de>
CC: "freebsd-current" <freebsd-current@freebsd.org>
Gesendet: Freitag, 1. April 2022 15:50:31
Betreff: Re: CURRENT: can't build 13-STABLE anymore: cp: [vdso]: No such file or directory *** Error

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 \