Browse Source

some versions of autoconf pad CONFIG_FILES with a single space.

accomodate that

Thanks to Cliff Woolley
experimental/new_ui_api
Sascha Schumann 25 years ago
parent
commit
9d17c42d77
  1. 2
      configure.in

2
configure.in

@ -1141,7 +1141,7 @@ $PHP_OUTPUT_FILES"
AC_OUTPUT($ALL_OUTPUT_FILES, [], [
if test "\$CONFIG_FILES" = "$ALL_OUTPUT_FILES" || test -z "\$CONFIG_FILES"; then
if test "\$CONFIG_FILES" = "$ALL_OUTPUT_FILES" || test "\$CONFIG_FILES" = " $ALL_OUTPUT_FILES" || test -z "\$CONFIG_FILES"; then
REDO_ALL=yes
fi

Loading…
Cancel
Save