[Libreoffice-commits] online.git: configure.ac
Tamás Zolnai (via logerrit)
logerrit at kemper.freedesktop.org
Wed Jan 22 20:21:56 UTC 2020
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit dbb87bab34e2f5e19030363aa54e6f73cd8062cc
Author: Tamás Zolnai <tamas.zolnai at collabora.com>
AuthorDate: Wed Jan 22 20:40:10 2020 +0100
Commit: Tamás Zolnai <tamas.zolnai at collabora.com>
CommitDate: Wed Jan 22 21:21:37 2020 +0100
cypress: Fix CHROME program detection.
For checking more binaries, we need AC_PATH_PROGS and
a blank separated list.
Change-Id: Ie1f5660b912970b70ba1aa51885989fbd0563914
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/87213
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
Reviewed-by: Tamás Zolnai <tamas.zolnai at collabora.com>
diff --git a/configure.ac b/configure.ac
index 4e0087071..9f9deba55 100644
--- a/configure.ac
+++ b/configure.ac
@@ -881,7 +881,7 @@ AS_IF([test `uname -s` = "Linux"],
AC_MSG_ERROR([This node version is old, upgrade to >= 6.0.0])
fi
fi
- AC_PATH_PROG(CHROME, chrome, google-chrome, chromium, no)
+ 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])
More information about the Libreoffice-commits
mailing list