summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-05-17 17:49:55 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-05-17 17:49:55 +0200
commit439effc455d5306b9be0faeb99e5d1f88d10b820 (patch)
tree08ec1e88825b4ab4c617e749f08229c42b8f3557
parent0afa59bbd83b0af1b1c15fbfb4de15082fa249a5 (diff)
downloadbackoffice-439effc455d5306b9be0faeb99e5d1f88d10b820.tar.gz
backoffice-439effc455d5306b9be0faeb99e5d1f88d10b820.tar.bz2
backoffice-439effc455d5306b9be0faeb99e5d1f88d10b820.zip
invert logic.
-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