From: Sean Bright Date: Thu, 21 Feb 2002 02:12:37 +0000 (+0000) Subject: Fix for bug #15605 X-Git-Tag: php-4.2.0RC1~306 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=444d3a6150721f97bd12a0d8b65251fde99ca48e;p=php Fix for bug #15605 # If someone more familiar with the build system sees a problem with this # feel free to revert it. It simply escapes #'s that are put into # config_vars.mk --- diff --git a/acinclude.m4 b/acinclude.m4 index 96ee42f354..c867dbf6cc 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -517,7 +517,7 @@ AC_DEFUN(PHP_GEN_CONFIG_VARS,[ echo creating config_vars.mk > config_vars.mk for i in $PHP_VAR_SUBST; do - eval echo "$i = \$$i" >> config_vars.mk + eval echo "$i = \$$i" | sed 's%#%\\#%g' >> config_vars.mk done ])