diff options
author | triaxx <triaxx@pkgsrc.org> | 2022-11-06 16:28:29 +0000 |
---|---|---|
committer | triaxx <triaxx@pkgsrc.org> | 2022-11-06 16:28:29 +0000 |
commit | 459431c0af37516999a316f0cfccdfd9f6b128f2 (patch) | |
tree | b64fc3e243be80e9aa9e0f8ae22cd16cbdf6d84a /lang/nodejs | |
parent | 3f55b6ec4e37f85f6e2e518f59bfcbfdbe7ce4cd (diff) | |
download | pkgsrc-459431c0af37516999a316f0cfccdfd9f6b128f2.tar.gz |
nodejs: Fix building with python311
Node.js v18 does not want to build with Python 3.11.
Diffstat (limited to 'lang/nodejs')
-rw-r--r-- | lang/nodejs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/nodejs/Makefile b/lang/nodejs/Makefile index 4c0b6ceb6f2..c2672a14ee1 100644 --- a/lang/nodejs/Makefile +++ b/lang/nodejs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.245 2022/11/01 17:58:22 schmonz Exp $ +# $NetBSD: Makefile,v 1.246 2022/11/06 16:28:29 triaxx Exp $ DISTNAME= node-v18.12.0 PKGREVISION= 1 @@ -17,7 +17,7 @@ CONFIGURE_ARGS+= --shared-brotli CONFIGURE_ARGS+= --shared-nghttp2 CONFIGURE_ARGS+= --with-intl=system-icu -PYTHON_VERSIONS_INCOMPATIBLE= 27 +PYTHON_VERSIONS_INCOMPATIBLE= 27 311 CHECK_PORTABILITY_SKIP+= deps/v8/tools/cppgc/export_to_github.sh CHECK_PORTABILITY_SKIP+= deps/v8/tools/cppgc/test_cmake.sh |