From nobody Wed Sep 20 13:55:07 2023 X-Original-To: stable@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 4RrKmN1lZ2z4thkh for ; Wed, 20 Sep 2023 13:55:16 +0000 (UTC) (envelope-from wollman@hergotha.csail.mit.edu) Received: from hergotha.csail.mit.edu (tunnel82308-pt.tunnel.tserv4.nyc4.ipv6.he.net [IPv6:2001:470:1f06:ccb::2]) (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 (2048 bits) client-digest SHA256) (Client CN "garrett.wollman.name", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4RrKmM6bzXz3WTP for ; Wed, 20 Sep 2023 13:55:15 +0000 (UTC) (envelope-from wollman@hergotha.csail.mit.edu) Authentication-Results: mx1.freebsd.org; none Received: from hergotha.csail.mit.edu (localhost [127.0.0.1]) by hergotha.csail.mit.edu (8.17.1/8.17.1) with ESMTPS id 38KDt8TA066913 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Wed, 20 Sep 2023 09:55:08 -0400 (EDT) (envelope-from wollman@hergotha.csail.mit.edu) Received: (from wollman@localhost) by hergotha.csail.mit.edu (8.17.1/8.17.1/Submit) id 38KDt8VP066912; Wed, 20 Sep 2023 09:55:08 -0400 (EDT) (envelope-from wollman) List-Id: Production branch of FreeBSD source code List-Archive: https://lists.freebsd.org/archives/freebsd-stable List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <25866.63931.709389.553955@hergotha.csail.mit.edu> Date: Wed, 20 Sep 2023 09:55:07 -0400 From: Garrett Wollman To: Pete French Cc: stable@freebsd.org Subject: Re: Build of 14 on 13 creates a file which needs libdialog.so.9 In-Reply-To: References: <8474d23f-8551-474d-94d0-3fb04183b01b@aetern.org> X-Mailer: VM 8.2.0b under 28.2 (amd64-portbld-freebsd13.2) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.4 (hergotha.csail.mit.edu [0.0.0.0]); Wed, 20 Sep 2023 09:55:08 -0400 (EDT) X-Spam-Status: No, score=-4.9 required=5.0 tests=ALL_TRUSTED, HEADER_FROM_DIFFERENT_DOMAINS,NICE_REPLY_A autolearn=disabled version=4.0.0 X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on hergotha.csail.mit.edu X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:6939, ipnet:2001:470::/32, country:US] X-Rspamd-Queue-Id: 4RrKmM6bzXz3WTP < said: > Possibly what I am doing is not supported, but I am a bit surprised as my > usual upgrade procedure is to build on one machine and then either NSF mount, > or rsync, the files to the boxes on which I wish to install them. This absolutely works, but only so long as all of the clients are running the same release as your build machine _was_ running during the most recent buildworld. I ran into this recently during our upgrade from 12.4 to 13.2, which saw a security update released while we were in the middle of rollout: I had to roll back /usr/src and /usr/obj to the 13.2-p1 state, roll out all the clients, and then I could (re)compile 13.2-p2 and deploy that -- by which point 13.2-p3 had come out, but by then we were over the hump. I think it's a bug in installworld that it depends on binaries from the build environment rather than the execution environment. -GAWollman