Browse Source

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
experimental/ZendEngine2
Sean Bright 25 years ago
parent
commit
444d3a6150
  1. 2
      acinclude.m4

2
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
])

Loading…
Cancel
Save