From: Michael Tremer Date: Tue, 9 Jan 2024 15:21:35 +0000 (+0000) Subject: configure: Depend on jekyll for static pages X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9613d4c6441b8bed6b7f30c780d3c1d6948f3d42;p=ipfire.org.git configure: Depend on jekyll for static pages Signed-off-by: Michael Tremer --- diff --git a/configure.ac b/configure.ac index c336ab68..2ffe5308 100644 --- a/configure.ac +++ b/configure.ac @@ -64,6 +64,12 @@ if test -z "${FFMPEG}"; then AC_MSG_ERROR([ffmpeg is required]) fi +# jekyll +AC_CHECK_PROG(JEKYLL, [jekyll], [jekyll]) +if test -z "${JEKYLL}"; then + AC_MSG_ERROR([jekyll is required]) +fi + # ------------------------------------------------------------------------------ AC_ARG_WITH([systemd],