Author: davi
Date: Sat Jul 21 18:24:48 2007
New Revision: 558445
URL: http://svn.apache.org/viewvc?view=rev&rev=558445
Log:
Make APR_SUBDIR_CONFIG work right if the second argument is a line-separated
value. The dnl builtin discards all characters up to the first newline and
since $2 was being expanded, a new line in the second argument could break the
configure script.
Modified:
apr/apr/trunk/build/apr_common.m4
Modified: apr/apr/trunk/build/apr_common.m4
URL: http://svn.apache.org/viewvc/apr/apr/trunk/build/apr_common.m4?view=diff&rev=558445&r1=558444&r2=558445
==============================================================================
--- apr/apr/trunk/build/apr_common.m4 (original)
+++ apr/apr/trunk/build/apr_common.m4 Sat Jul 21 18:24:48 2007
@@ -161,8 +161,8 @@
# autoconf doesn't add --silent to ac_configure_args; explicitly pass it
test "x$silent" = "xyes" && apr_configure_args="$apr_configure_args --silent"
- dnl The eval makes quoting arguments work - specifically $2 where the
- dnl quoting mechanisms used is "" rather than [].
+ dnl The eval makes quoting arguments work - specifically the second argument
+ dnl where the quoting mechanisms used is "" rather than [].
dnl
dnl We need to execute another shell because some autoconf/shell combinations
dnl will choke after doing repeated APR_SUBDIR_CONFIG()s. (Namely Solaris
|