summaryrefslogtreecommitdiff
path: root/scripts/phpize.in
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2015-11-11 15:08:15 -0500
committerJoe Watkins <krakjoe@php.net>2017-01-27 06:07:40 +0000
commit2fe9208ee3d21f8d25b1b350819cb79432647af1 (patch)
tree154e202c1874357419a0b3ce659cb5f2d9d3724d /scripts/phpize.in
parent68801c9a308e49c5e801ac894673e68e448b31c4 (diff)
downloadphp-git-2fe9208ee3d21f8d25b1b350819cb79432647af1.tar.gz
Use modern autotools name of configure.ac instead of configure.in
configure.ac was introduced in 2001 with automake-1.15 and autoconf-2.50 to replace the file named configure.in. Autotools is preparing to remove configure.in in Automake 2.0. All new software should be using configure.ac. This also fixes Bug #69770 where extensions are creating configure.in Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'scripts/phpize.in')
-rw-r--r--scripts/phpize.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/phpize.in b/scripts/phpize.in
index 240590da74..6302d4ee2f 100644
--- a/scripts/phpize.in
+++ b/scripts/phpize.in
@@ -12,7 +12,7 @@ SED="@SED@"
FILES_BUILD="mkdep.awk scan_makefile_in.awk shtool libtool.m4 ax_check_compile_flag.m4"
FILES="acinclude.m4 Makefile.global config.sub config.guess ltmain.sh run-tests*.php"
CLEAN_FILES="$FILES *.o *.lo *.la .deps .libs/ build/ modules/ install-sh \
- mkinstalldirs missing config.nice config.sub config.guess configure configure.in \
+ mkinstalldirs missing config.nice config.sub config.guess configure configure.ac \
aclocal.m4 config.h config.h.in conftest* ltmain.sh libtool config.cache autom4te.cache/ \
config.log config.status Makefile Makefile.fragments Makefile.objects confdefs.h \
run-tests*.php tests/*.diff tests/*.exp tests/*.log tests/*.out tests/*.php"
@@ -153,7 +153,7 @@ phpize_replace_prefix()
{
$SED \
-e "s#@prefix@#$prefix#" \
- < "$phpdir/phpize.m4" > configure.in
+ < "$phpdir/phpize.m4" > configure.ac
}
phpize_autotools()