[Libreoffice-commits] online.git: configure.ac
Andras Timar (via logerrit)
logerrit at kemper.freedesktop.org
Mon Sep 21 14:27:50 UTC 2020
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit e9e6d981e3727eec013e259fc9170eaf69f94614
Author: Andras Timar <andras.timar at collabora.com>
AuthorDate: Mon Sep 21 13:04:22 2020 +0200
Commit: Andras Timar <andras.timar at collabora.com>
CommitDate: Mon Sep 21 16:27:31 2020 +0200
nodejs >= 10.0.0 is required to build loleaflet
Change-Id: I4541044e090e85514004b941b6e57986479095cd
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/103095
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
Reviewed-by: Andras Timar <andras.timar at collabora.com>
diff --git a/configure.ac b/configure.ac
index cdfd3aa65..6fe6e7967 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1044,8 +1044,8 @@ AS_IF([test `uname -s` = "Linux"],
AC_MSG_ERROR([node required to build loleaflet, but not installed])
else
NODE_VER=`node --version | sed 's/^v//' | awk -F. '{ print (($1 * 100) + $2) * 100 + $3;}'`
- if test "$NODE_VER" -lt 60000; then
- AC_MSG_ERROR([This node version is old, upgrade to >= 6.0.0])
+ if test "$NODE_VER" -lt 100000; then
+ AC_MSG_ERROR([This node version is old, upgrade to >= 10.0.0])
fi
fi
if test "$enable_cypress" = "yes"; then
More information about the Libreoffice-commits
mailing list