From nobody Sun Dec 10 14:11:02 2023 X-Original-To: current@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4Sp6HN6LJYz53slP for ; Sun, 10 Dec 2023 14:11:12 +0000 (UTC) (envelope-from herbert@gojira.at) Received: from mail.bsd4all.net (mail.bsd4all.net [IPv6:2a01:4f8:13b:240c::25]) (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 ECDSA (P-384) client-digest SHA384) (Client CN "mail.bsd4all.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Sp6HM5hXQz4fyF for ; Sun, 10 Dec 2023 14:11:11 +0000 (UTC) (envelope-from herbert@gojira.at) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gojira.at header.s=mail202005 header.b=SlTR+21n; spf=pass (mx1.freebsd.org: domain of herbert@gojira.at designates 2a01:4f8:13b:240c::25 as permitted sender) smtp.mailfrom=herbert@gojira.at; dmarc=none Date: Sun, 10 Dec 2023 15:11:02 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=gojira.at; s=mail202005; t=1702217462; bh=Ncf2Ul05Q1Ictf8wjFw6EW214CX14LEsgH4KQVcgeqA=; h=Date:From:To:Subject:Message-ID:MIME-Version:Content-Type; b=SlTR+21npsj6C8uIRsZDIXMAPAlNC+SKzWEEK4T/JAcTe/K5g+y/lHaO/DUUtf3ja PSIx+tXi0RBje18PTr9lZQ95CjxgCE5IxrUocQvEXnnRLa9dLXP66qIaMAtCfFtVv2 0L9deMfgNWupzySAEDZg1P/Ifm2VrNl553MM88fGAlWAPltW+sLKG9k58b6PX90JNR 2RYq7wRfJVheCWA6vo6ajGdM9srG5W5ULKqWjrUuA5wHmdd3pG1rAoM2yGhueHF3JO CAKQypHsoUyVyMhsUKJmbebwZaqbVUk5sbpjScCBL51YH4xreEbcp98C+Yt/Yki6sc 2mz1sq/IuXhjA== From: "Herbert J. Skuhra" To: current@freebsd.org Subject: Re: make installworld fails because /usr/include/c++/v1/__tuple is a file Message-ID: References: List-Id: Discussions about the use of FreeBSD-current List-Archive: https://lists.freebsd.org/archives/freebsd-current List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spamd-Result: default: False [-3.50 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.999]; R_SPF_ALLOW(-0.20)[+ip6:2a01:4f8:13b:240c::25]; R_DKIM_ALLOW(-0.20)[gojira.at:s=mail202005]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[current@freebsd.org]; RCVD_COUNT_ZERO(0.00)[0]; FROM_EQ_ENVFROM(0.00)[]; DKIM_TRACE(0.00)[gojira.at:+]; ARC_NA(0.00)[]; DMARC_NA(0.00)[gojira.at]; MIME_TRACE(0.00)[0:+]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; ASN(0.00)[asn:24940, ipnet:2a01:4f8::/32, country:DE] X-Rspamd-Queue-Id: 4Sp6HM5hXQz4fyF X-Spamd-Bar: --- On Sun, Dec 10, 2023 at 01:22:38PM +0000, John F Carr wrote: > On arm64 running CURRENT from two weeks ago I updated to > > c711af772782 Bump __FreeBSD_version for llvm 17.0.6 merge > > and built and installed from source. make installworld failed: > > install: target directory `/usr/include/c++/v1/__tuple/' does not exist > > That pathname is a file: > > -r--r--r-- 1 root wheel 20512 Feb 15 2023 /usr/include/c++/v1/__tuple > > Early in make output is > > mtree -deU -i -f /usr/src/etc/mtree/BSD.include.dist -p /usr/include > ./c++/v1/__algorithm/pstl_backends missing (created) > [...] > ./c++/v1/__tuple missing (not created: File exists) > > Should I remove the file and try again, or is there a more elegant fix? > > The word "tuple" does not appear in UPDATING. 'make delete-old' should have removed this file. bdd1243df58e6 (Dimitry Andric 2023-04-14 23:41:27 +0200 965) OLD_FILES+=usr/include/c++/v1/__tuple -- Herbert