From 659d2162cdceae2cef13b2643ca8932800950fc7 Mon Sep 17 00:00:00 2001 From: rillig Date: Sat, 21 Mar 2020 17:27:24 +0000 Subject: [PATCH] benchmarks/google-benchmark: add build dependency to Python Without the dependency, the build fails with: > Scanning dependencies of target copy_clobber_memory_assembly_test > env: python: No such file or directory --- benchmarks/google-benchmark/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/benchmarks/google-benchmark/Makefile b/benchmarks/google-benchmark/Makefile index 617d4616c6fd..600a8467c0cb 100644 --- a/benchmarks/google-benchmark/Makefile +++ b/benchmarks/google-benchmark/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2020/03/16 14:00:58 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2020/03/21 17:27:24 rillig Exp $ DISTNAME= benchmark-1.5 PKGNAME= google-${DISTNAME} @@ -20,5 +20,8 @@ TEST_TARGET= test BUILDLINK_TRANSFORM+= rm:-Werror +REPLACE_PYTHON= *.py */*.py */*/*.py + +.include "../../lang/python/application.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk"