summaryrefslogtreecommitdiff
path: root/ext/ext_skel
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2001-09-06 21:05:57 +0000
committerfoobar <sniper@php.net>2001-09-06 21:05:57 +0000
commit14152e7ca6145157fcf16a6c9d331176f99e939f (patch)
treeac149904a9faaebe115ff7f4a6c324e30d057692 /ext/ext_skel
parentacb7d69ff797a9be9678deca9d5659d41940a0c5 (diff)
downloadphp-git-14152e7ca6145157fcf16a6c9d331176f99e939f.tar.gz
Introduce the good practise of using [] around output messages.
Diffstat (limited to 'ext/ext_skel')
-rwxr-xr-xext/ext_skel8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/ext_skel b/ext/ext_skel
index 18c32daf41..c3be97c708 100755
--- a/ext/ext_skel
+++ b/ext/ext_skel
@@ -123,7 +123,7 @@ if test "\$PHP_$EXTNAME" != "no"; then
dnl if test -r \$PHP_$EXTNAME/$SEARCH_FOR; then # path given as parameter
dnl ${EXTNAME}_DIR=\$PHP_$EXTNAME
dnl else # search default path list
- dnl AC_MSG_CHECKING(for $extname files in default path)
+ dnl AC_MSG_CHECKING([for $extname files in default path])
dnl for i in \$SEARCH_PATH ; do
dnl if test -r \$i/\$SEARCH_FOR; then
dnl ${EXTNAME}_DIR=\$i
@@ -133,8 +133,8 @@ if test "\$PHP_$EXTNAME" != "no"; then
dnl fi
dnl
dnl if test -z "\$${EXTNAME}_DIR"; then
- dnl AC_MSG_RESULT(not found)
- dnl AC_MSG_ERROR(Please reinstall the $extname distribution)
+ dnl AC_MSG_RESULT([not found])
+ dnl AC_MSG_ERROR([Please reinstall the $extname distribution])
dnl fi
dnl # --with-$extname -> add include path
@@ -146,7 +146,7 @@ if test "\$PHP_$EXTNAME" != "no"; then
dnl old_LIBS=\$LIBS
dnl LIBS="\$LIBS -L\$${EXTNAME}_DIR/lib -lm -ldl"
dnl AC_CHECK_LIB(\$LIBNAME, \$LIBSYMBOL, [AC_DEFINE(HAVE_${EXTNAME}LIB,1,[ ])],
- dnl [AC_MSG_ERROR(wrong $extname lib version or lib not found)])
+ dnl [AC_MSG_ERROR([wrong $extname lib version or lib not found])])
dnl LIBS=\$old_LIBS
dnl
dnl PHP_SUBST(${EXTNAME}_SHARED_LIBADD)