From 2afebbeb672af1f94384b0bd7120107fde251fbd Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 27 Jan 2020 09:07:19 +0100 Subject: configure: make lack of Chrome an error in the enable-cypress case Change-Id: I1e2d4c884fc58334b3fdd5d43b1821eceeb08987 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/87487 Tested-by: Jenkins CollaboraOffice Reviewed-by: Miklos Vajna --- configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index f56bcab1b9..8e769ff35c 100644 --- a/configure.ac +++ b/configure.ac @@ -888,8 +888,7 @@ AS_IF([test `uname -s` = "Linux"], if test "$enable_cypress" = "yes"; then AC_PATH_PROGS(CHROME, chrome google-chrome chromium, no) if test "$CHROME" = "no"; then - # Only a warning till these tests are not part of toplevel 'make check'. - AC_MSG_WARN([chrome or chromium is required to run the JS tests, but not installed]) + AC_MSG_ERROR([chrome or chromium is required to run the JS tests, but not installed]) fi fi ]) -- cgit