summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-10-20 15:33:55 -0700
committerJason Ekstrand <jason.ekstrand@intel.com>2016-10-21 14:00:54 -0700
commit27509d94dae0a4b6348569313e45ad82908c6aee (patch)
tree296370b1965f8434dbf92b747cf9eff01d650023
parent11ac18e3d8f24cf3b7127acf4506d5fb7655d1b6 (diff)
configure: Properly report success when checking for OpenCV
-rw-r--r--m4/ax_check_python2_module_opencv.m42
1 files changed, 2 insertions, 0 deletions
diff --git a/m4/ax_check_python2_module_opencv.m4 b/m4/ax_check_python2_module_opencv.m4
index 1048f99..1b564d4 100644
--- a/m4/ax_check_python2_module_opencv.m4
+++ b/m4/ax_check_python2_module_opencv.m4
@@ -40,5 +40,7 @@ except ImportError as err:
if test $? -ne 0 ; then
AC_MSG_ERROR([Python2 OpenCV module not found])
+ else
+ AC_MSG_RESULT([yes])
fi
])