Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 273EE84ECC for ; Sun, 31 Dec 2023 09:48:59 +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 SbXOcU-ub6Fa for ; Sun, 31 Dec 2023 09:48:58 +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 75A4E84F55 for ; Sun, 31 Dec 2023 09:48:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6FC1FFA42; Sun, 31 Dec 2023 09:48:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1704016138286870" MIME-Version: 1.0 Date: Sun, 31 Dec 2023 09:48:58 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/cpu_features To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231231094858.6FC1FFA42@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1704016138286870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Dec 31 09:48:58 UTC 2023 Modified Files: pkgsrc/devel/cpu_features: Makefile Log Message: cpu_features: make sure to build with make To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/cpu_features/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1704016138286870 Content-Disposition: inline Content-Length: 895 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/cpu_features/Makefile diff -u pkgsrc/devel/cpu_features/Makefile:1.7 pkgsrc/devel/cpu_features/Makefile:1.8 --- pkgsrc/devel/cpu_features/Makefile:1.7 Thu Mar 16 09:11:13 2023 +++ pkgsrc/devel/cpu_features/Makefile Sun Dec 31 09:48:58 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2023/03/16 09:11:13 adam Exp $ +# $NetBSD: Makefile,v 1.8 2023/12/31 09:48:58 wiz Exp $ GITHUB_TAG= v${PKGVERSION_NOREV} DISTNAME= cpu_features-0.7.0 @@ -30,5 +30,10 @@ PLIST_SUBST+= CPU_FEATURES_ARCH=mips PKG_FAIL_REASON+= "${MACHINE_ARCH} unsupported, see CMakeLists.txt" .endif +# wiz 20231231: +# as of 0.7.0, the ninja generator has problems in some environments: +# ninja: error: manifest 'build.ninja' still dirty after 100 tries, perhaps system time is not set +CMAKE_GENERATOR= make + .include "../../devel/cmake/build.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1704016138286870--