]> granicus.if.org Git - php/commitdiff
Fix #77035: The phpize and ./configure create redundant .deps file
authorPeter Kokot <peterkokot@gmail.com>
Thu, 18 Oct 2018 22:02:09 +0000 (00:02 +0200)
committerPeter Kokot <peterkokot@gmail.com>
Thu, 18 Oct 2018 22:02:09 +0000 (00:02 +0200)
The `.deps` file(s) was once used by Automake and created to write
dependencies to it. The file creation has been removed via the commit
779c11af21cf8a627b8f2f2edef9e9073c76ed94.

The phpize and ./configure script create a redundant .deps file in a
PECL extension directory which might cause confusions why is it used.
Today it is no longer relevant so this redundant artefact can be
removed in the phpize configure script.

.gitignore
ext/ext_skel
scripts/phpize.in
scripts/phpize.m4

index 2e95e2510f80caf2d5f7016dac38a3eee2c0adc8..a9e2e51221f449a0291ab4da2c478ea9eeb2bcf3 100644 (file)
@@ -26,7 +26,6 @@
 *.tar.xz.asc
 .FBCIndex
 .FBCLockFolder
-.deps
 .libs
 phpt.*
 core
index 63563e7f022d564541b6b88fbe7b2b2816af8de8..88b10e9dbcff262b52a01443ac79b4588aa6deb6 100755 (executable)
@@ -189,7 +189,6 @@ eof
 
 $ECHO_N " .gitignore$ECHO_C"
 cat >.gitignore <<eof
-.deps
 *.lo
 *.la
 .libs
index 4000183e19cbd51cb312426cd6aa706adb6759fe..99250da078e60c34cb3365ac91fa3f506d146989 100644 (file)
@@ -11,7 +11,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 \
+CLEAN_FILES="$FILES *.o *.lo *.la .libs/ build/ modules/ install-sh \
        mkinstalldirs missing config.nice config.sub config.guess configure configure.in \
        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 \
index b354596f2ff5a87e28ccdebda5615824385aa927..1cf38a2daad6da1e4d227fbb759e48d931e16da4 100644 (file)
@@ -195,7 +195,6 @@ PHP_GEN_BUILD_DIRS
 PHP_GEN_GLOBAL_MAKEFILE
 
 test -d modules || $php_shtool mkdir modules
-touch .deps
 
 AC_CONFIG_HEADER(config.h)