Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=pC3ktCsk; dkim=fail reason="signature verification failed" (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=kI9MVkT0 Received: by mail.netbsd.org (Postfix, from userid 605) id 1A7FB84E96; Tue, 23 Apr 2024 21:58:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713909539; bh=WN2A0tfk33LjQbs7rsIAzvuR9QXq2p9aNFQvUPC9AQE=; h=Date:From:Subject:To:List-Id:Reply-To:List-Unsubscribe; b=pC3ktCskVDkBsX8kjuDoKgRawJNgpUUHbZPmZRUaX8MS3eKlJmFpf6Lv4S+2wpWHM rqEImsNnqyagN2Ie9gEzSje1tl6wV20hQQeAOjVI15dBq1vDLBOBbE6V0XSL3CJ355 ehD9ZTWoeeyoerRqfWgrMvLaTNOv3hwFMzAgoLa4= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 03BD184E92 for ; Tue, 23 Apr 2024 21:58:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id MKVlabC1UC74 for ; Tue, 23 Apr 2024 21:58:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 920C184D4B for ; Tue, 23 Apr 2024 21:58:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713909537; bh=WN2A0tfk33LjQbs7rsIAzvuR9QXq2p9aNFQvUPC9AQE=; h=Date:From:Subject:To:Reply-To; b=kI9MVkT0KUCwyWh7j/H1W2xNUaxKhfvFjjaf9bxZllBBl7HR0OtoV/qkXIp1KZZqr JcYXo/qbe/C5lbiRI1GQSWf6592S5ucpRfS1mF5jo1Y29w0FgSpUE98gnMgeUZ1feW WpgGwHuqbzKiosSCTB2DSqPYs4T3N67l2LNHb/Pc= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 815C8FA2C; Tue, 23 Apr 2024 21:58:57 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Tue, 23 Apr 2024 17:58:57 -0400 From: "Christos Zoulas" Subject: CVS commit: src/distrib/common To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20240423215857.815C8FA2C@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Christos Zoulas" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: christos Date: Tue Apr 23 21:58:57 UTC 2024 Modified Files: src/distrib/common: Makefile.mdset Log Message: `nm`: Generate a stable symbol table (Jan-Benedict Glaw) Release artifacts may contain symbol lists. Binutils's `nm` sorts them by symbol name, locale based. Inserting a plain `sort` (with `LC_ALL=C`) here sorts them by address, and (with several symbols pointing to the same address) sorting by name is also stable (think of embedded '_'.) To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 src/distrib/common/Makefile.mdset Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.