From 0d4d35d607c3e41d0fcf63a605d3dad1e19db341 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 16 Oct 2023 00:41:37 -0400 Subject: [PATCH] configure.ac: check for scour instead of xmllint I'm about to switch to a more involved SVG pre-processing step using scour, https://github.com/scour-project/scour instead of xmllint. --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 5b9256c..a1d9c82 100644 --- a/configure.ac +++ b/configure.ac @@ -12,9 +12,9 @@ AC_PATH_PROG( ) AC_PATH_PROG( - [XMLLINT], - [xmllint], - [AC_MSG_ERROR([xmllint program not found])] + [SCOUR], + [scour], + [AC_MSG_ERROR([scour program not found])] ) AC_OUTPUT -- 2.44.2