summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2002-03-20 11:49:36 +0000
committerSascha Schumann <sas@php.net>2002-03-20 11:49:36 +0000
commitd9f36aed9fca238fde11df92eaf13dbc4462e6e7 (patch)
tree5b8d021b403fc275098bd7ee6dbf177af6078c7f
parent500541559503e3db29ea02db99456d77b79d3c44 (diff)
downloadphp-git-d9f36aed9fca238fde11df92eaf13dbc4462e6e7.tar.gz
Don't quote too much. Now autoconf-2.13 is happy again.
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 4c82285bdc..8c45a372c0 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1341,10 +1341,10 @@ AC_DEFUN(PHP_CHECK_LIBRARY, [
LDFLAGS="$5 $LDFLAGS"
AC_CHECK_LIB([$1],[$2],[
LDFLAGS=$save_old_LDFLAGS
- [$3]
+ $3
],[
LDFLAGS=$save_old_LDFLAGS
- [$4]
+ $4
])dnl
])