1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Mathieu Parent <math.parent@gmail.com>
Date: Wed, 21 Jan 2015 16:15:17 +0100
Subject: Fix configure script syntax
./configure: line 4677: ,: command not found
Bug: https://github.com/infusion/PHP-Facedetect/pull/22
---
config.m4 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.m4 b/config.m4
index 1b58b07..0590ea2 100644
--- a/config.m4
+++ b/config.m4
@@ -37,7 +37,7 @@ if test "$PHP_FACEDETECT" != "no"; then
],[
AC_MSG_ERROR([Wrong OpenCV version or OpenCV not found])
],[
- ]),
+ ])
],[
AC_MSG_ERROR([wrong OpenCV version or OpenCV not found])
],[
|