summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index ccd791f..46924a1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -66,8 +66,8 @@ fi
# Check for minifier
#
AC_MSG_CHECKING([jsmin])
-$PYTHON -m jsmin | grep -v "No module named" > /dev/null
-if test $? -ne 0;
+$PYTHON -m jsmin | grep "No module named" > /dev/null
+if test $? -eq 0;
then
AC_MSG_ERROR([Please install Python3 module 'jsmin'])
fi