Received: by mail.netbsd.org (Postfix, from userid 605) id AD23B84ED7; Fri, 23 Dec 2022 09:27:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CEF2784EE2 for ; Fri, 23 Dec 2022 09:27:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Nt6IEIhy3FZV for ; Fri, 23 Dec 2022 09:27:11 +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 2190E84EC1 for ; Fri, 23 Dec 2022 09:27:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 14D27FA90; Fri, 23 Dec 2022 09:27:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1671787631194540" MIME-Version: 1.0 Date: Fri, 23 Dec 2022 09:27:11 +0000 From: =?UTF-8?B?RnLDqWTDqXJpYyBGYXViZXJ0ZWF1?= Subject: CVS commit: pkgsrc/mk/platform To: pkgsrc-changes@NetBSD.org Reply-To: triaxx@netbsd.org X-Mailer: log_accum Message-Id: <20221223092711.14D27FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1671787631194540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: triaxx Date: Fri Dec 23 09:27:11 UTC 2022 Modified Files: pkgsrc/mk/platform: Darwin.mk Log Message: Darwin.mk: Fix SDK map for 13.1 Sorry, I forgot to update XCode to 14.2. Thank you Tobias! To generate a diff of this commit: cvs rdiff -u -r1.121 -r1.122 pkgsrc/mk/platform/Darwin.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1671787631194540 Content-Disposition: inline Content-Length: 773 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/platform/Darwin.mk diff -u pkgsrc/mk/platform/Darwin.mk:1.121 pkgsrc/mk/platform/Darwin.mk:1.122 --- pkgsrc/mk/platform/Darwin.mk:1.121 Tue Dec 20 07:04:42 2022 +++ pkgsrc/mk/platform/Darwin.mk Fri Dec 23 09:27:10 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Darwin.mk,v 1.121 2022/12/20 07:04:42 triaxx Exp $ +# $NetBSD: Darwin.mk,v 1.122 2022/12/23 09:27:10 triaxx Exp $ # # Variable definitions for the Darwin operating system. @@ -113,7 +113,8 @@ OSX_SDK_MAP.12.2= 12.1 OSX_SDK_MAP.12.4= 12.3 OSX_SDK_MAP.12.5= 12.3 OSX_SDK_MAP.12.6= 12.3 -OSX_SDK_MAP.13.1= 13.0 +OSX_SDK_MAP.13.0= 13.0 +OSX_SDK_MAP.13.1= 13.1 # # If the user has set MACOSX_DEPLOYMENT_TARGET (ideally at bootstrap time) to # select a specific SDK then we prefer that. --_----------=_1671787631194540--