takagi Thu Sep 21 03:56:04 2006 UTC
Modified files:
/phpdoc configure.in
Log:
plain /bin/sh (not bash) cannot recognize ${parameter::offset:length}
style syntax (Bug #38856).
http://cvs.php.net/viewvc.cgi/phpdoc/configure.in?r1=1.236&r2=1.237&diff_format=u
Index: phpdoc/configure.in
diff -u phpdoc/configure.in:1.236 phpdoc/configure.in:1.237
--- phpdoc/configure.in:1.236 Thu Sep 14 14:58:35 2006
+++ phpdoc/configure.in Thu Sep 21 03:56:04 2006
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.236 2006/09/14 14:58:35 nlopess Exp $
+dnl $Id: configure.in,v 1.237 2006/09/21 03:56:04 takagi Exp $
dnl autoconf initialisation
AC_INIT()
@@ -150,7 +150,7 @@
if test $JADE = "no"; then
AC_MSG_ERROR([can't find jade or openjade])
fi
-if test ${JADE:0:15} = "../phpdoc-tools"; then
+if test `expr $JADE : ../phpdoc-tools` -ne 0; then
WINJADE=1
else
WINJADE=0