diff options
author | rillig <rillig@pkgsrc.org> | 2020-03-21 17:27:24 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-03-21 17:27:24 +0000 |
commit | 5ae47ecb234df88c3ff39a2eb72dc7e328ce7ba6 (patch) | |
tree | 161304a0761afc0ba20b765a1ae2182d9d2e6a7b /benchmarks | |
parent | 6130b51b1bf97c544cc1ccb6b1ffdd8b17f771c6 (diff) | |
download | pkgsrc-5ae47ecb234df88c3ff39a2eb72dc7e328ce7ba6.tar.gz |
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
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/google-benchmark/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/benchmarks/google-benchmark/Makefile b/benchmarks/google-benchmark/Makefile index 617d4616c6f..600a8467c0c 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" |