From e04beb97b9bff08ae49f519b5bf879e84cb903b7 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 24 Mar 2024 10:46:10 +0000 Subject: [PATCH] configure: Insist on Dart SCSS instead of Node Node SCSS does not seem to support the @use keyword on the release that is currently being shipped with Debian. Signed-off-by: Michael Tremer --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index fc99f7ca..fd85e0fc 100644 --- a/configure.ac +++ b/configure.ac @@ -47,7 +47,7 @@ AX_PYTHON_MODULE([tornado], [fatal]) AX_PYTHON_MODULE([zxcvbn], [fatal]) # sass -AC_CHECK_PROGS(SASS, [sass node-sass]) +AC_CHECK_PROGS(SASS, [sass]) if test -z "${SASS}"; then AC_MSG_ERROR([sass is required]) fi -- 2.47.3