Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6E05C84EF3 for ; Thu, 23 Nov 2023 11:01:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 1JQ4TfAKTNYF for ; Thu, 23 Nov 2023 11:01:47 +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 BE3E584ED5 for ; Thu, 23 Nov 2023 11:01:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BA894FA3F; Thu, 23 Nov 2023 11:01:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1700737306291060" MIME-Version: 1.0 Date: Thu, 23 Nov 2023 11:01:46 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/lang/llvm To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20231123110146.BA894FA3F@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1700737306291060 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Nov 23 11:01:46 UTC 2023 Modified Files: pkgsrc/lang/llvm: Makefile Log Message: llvm: Switch PYTHON_FOR_BUILD_ONLY to "tool". Avoids problems where python is buildlinked, and buildlink dependencies of python ending up being available during the build but not registered as full dependencies, resulting in them potentially being unavailable at runtime. To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 pkgsrc/lang/llvm/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1700737306291060 Content-Disposition: inline Content-Length: 623 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/llvm/Makefile diff -u pkgsrc/lang/llvm/Makefile:1.93 pkgsrc/lang/llvm/Makefile:1.94 --- pkgsrc/lang/llvm/Makefile:1.93 Wed Nov 8 13:19:49 2023 +++ pkgsrc/lang/llvm/Makefile Thu Nov 23 11:01:46 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.93 2023/11/08 13:19:49 wiz Exp $ +# $NetBSD: Makefile,v 1.94 2023/11/23 11:01:46 jperkin Exp $ # # When updating this, please also update: # devel/include-what-you-use @@ -37,7 +37,7 @@ LICENSE= apache-2.0 USE_LANGUAGES= c c++14 GCC_REQD+= 7 -PYTHON_FOR_BUILD_ONLY= yes +PYTHON_FOR_BUILD_ONLY= tool PYTHON_VERSIONS_INCOMPATIBLE= 27 --_----------=_1700737306291060--