From: Mike Hommey Date: Tue, 7 Apr 2020 23:43:20 +0000 (+0900) Subject: Allow to build with older versions of nodejs 10 X-Git-Tag: archive/raspbian/91.9.0esr-1+rpi1^2~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=08339caa5d3b6eafe41ea876afd3b2d5c715c302;p=firefox-esr.git Allow to build with older versions of nodejs 10 Gbp-Pq: Topic debian-hacks Gbp-Pq: Name Allow-to-build-with-older-versions-of-nodejs-10.patch --- diff --git a/python/mozbuild/mozbuild/nodeutil.py b/python/mozbuild/mozbuild/nodeutil.py index 95bedbcf842..fef80cd5f37 100644 --- a/python/mozbuild/mozbuild/nodeutil.py +++ b/python/mozbuild/mozbuild/nodeutil.py @@ -13,7 +13,7 @@ from mozboot.util import get_tools_dir from mozfile import which from six import PY3 -NODE_MIN_VERSION = StrictVersion("10.23.1") +NODE_MIN_VERSION = StrictVersion("10.0") NPM_MIN_VERSION = StrictVersion("6.14.10")