From owner-freebsd-ports@freebsd.org Tue Oct 6 19:47:02 2020 Return-Path: Delivered-To: freebsd-ports@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 017CE43AA06 for ; Tue, 6 Oct 2020 19:47:02 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C5SfF60sRz3c9k; Tue, 6 Oct 2020 19:47:01 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qk1-f180.google.com (mail-qk1-f180.google.com [209.85.222.180]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id ACAE02DFC9; Tue, 6 Oct 2020 19:47:01 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qk1-f180.google.com with SMTP id z6so9531468qkz.4; Tue, 06 Oct 2020 12:47:01 -0700 (PDT) X-Gm-Message-State: AOAM5312eiQUR3oxDKSq+TNVmCTQL5SaC0UCYMG+pVnEm8uXhUdEUB/H C55AwF74cltBr6MPbnKQE4yjvMhzjIuh9W4jFS4= X-Google-Smtp-Source: ABdhPJz+pmffyznWJ3My6msrOOnyqThe+JRAbOjxpv0xaC+RQ8yJWMRmsXiG5XXoRbydeE2v/G+HTrdyxPkfY+huuGg= X-Received: by 2002:a37:aa43:: with SMTP id t64mr7088994qke.493.1602013621120; Tue, 06 Oct 2020 12:47:01 -0700 (PDT) MIME-Version: 1.0 References: <7237c2b6-f378-ab89-4aba-cd57a22cd77b@gwdg.de> In-Reply-To: <7237c2b6-f378-ab89-4aba-cd57a22cd77b@gwdg.de> From: Kyle Evans Date: Tue, 6 Oct 2020 14:46:46 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: Poudriere: Installing or updating jails fail with cp/utils.c error To: rhurlin@freebsd.org Cc: ports-list freebsd Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Oct 2020 19:47:02 -0000 On Tue, Oct 6, 2020 at 2:30 PM Rainer Hurling wrote: > > On 02.10.20 11:19, Rainer Hurling wrote: > > For some time now, I get the following error when trying to create or > > update 11.4 or 12.2 jails in Poudriere: > > > > > > #poudriere jail -c -j F114i386 -v stable/11 -a i386 -m svn+https > > > > [..snip..] > > --- all_subdir_rescue --- > > --- /poudriere/jails/F114i386/usr/src/bin/cp/utils.o --- > > cc -O2 -pipe -std=gnu99 -Qunused-arguments -O2 -pipe -c > > /poudriere/jails/F114i386/usr/src/bin/cp/utils.c -o > > /poudriere/jails/F114i386/usr/src/bin/cp/utils.o > > /poudriere/jails/F114i386/usr/src/bin/cp/utils.c:515:14: error: member > > reference base type 'void' is not a structure or union > > aclp = &acl->ats_acl; > > ~~~^ ~~~~~~~ > > /poudriere/jails/F114i386/usr/src/bin/cp/utils.c:516:11: error: > > incomplete definition of type 'struct acl' > > if (aclp->acl_cnt != 0 && aclsetf(dest_dir, > > ~~~~^ > > /poudriere/jails/F114i386/usr/src/bin/cp/utils.c:466:9: note: forward > > declaration of 'struct acl' > > struct acl *aclp; > > ^ > > 2 errors generated. > > *** [/poudriere/jails/F114i386/usr/src/bin/cp/utils.o] Error code 1 > > > > make[5]: stopped in > > /usr/obj/i386.i386/poudriere/jails/F114i386/usr/src/rescue/rescue > > > > > > This happens on a recent 13.0-CURRENT amd64 (r366190). Updating HEAD > > jails work fine so far. > > Just for the record: > > After updating my (host) box to 13.0-CURRENT r366466 (crunchgen: fix > MK_AUTO_OBJ logic), I am able to install and update my jails versions > 11.4 and 12.1 on Poudriere again. > Ah, my apologies for missing this report. :-( Indeed, that should be the end of that; it will get MFC'd in ~2 days to mitigate the issue on stable/12 since I MFC'd the breaking commit back, but the bug fortunately did not make it into 12.2. Thanks, Kyle Evans