Skip to content

Commit 447b41f

Browse files
committed
Fix #77035: The phpize and ./configure create redundant .deps file
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 779c11a. 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.
1 parent fda0612 commit 447b41f

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
*.tar.xz.asc
2727
.FBCIndex
2828
.FBCLockFolder
29-
.deps
3029
.libs
3130
phpt.*
3231
core

ext/ext_skel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ eof
189189

190190
$ECHO_N " .gitignore$ECHO_C"
191191
cat >.gitignore <<eof
192-
.deps
193192
*.lo
194193
*.la
195194
.libs

scripts/phpize.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ SED="@SED@"
1111

1212
FILES_BUILD="mkdep.awk scan_makefile_in.awk shtool libtool.m4 ax_check_compile_flag.m4"
1313
FILES="acinclude.m4 Makefile.global config.sub config.guess ltmain.sh run-tests*.php"
14-
CLEAN_FILES="$FILES *.o *.lo *.la .deps .libs/ build/ modules/ install-sh \
14+
CLEAN_FILES="$FILES *.o *.lo *.la .libs/ build/ modules/ install-sh \
1515
mkinstalldirs missing config.nice config.sub config.guess configure configure.in \
1616
aclocal.m4 config.h config.h.in conftest* ltmain.sh libtool config.cache autom4te.cache/ \
1717
config.log config.status Makefile Makefile.fragments Makefile.objects confdefs.h \

scripts/phpize.m4

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ PHP_GEN_BUILD_DIRS
195195
PHP_GEN_GLOBAL_MAKEFILE
196196

197197
test -d modules || $php_shtool mkdir modules
198-
touch .deps
199198

200199
AC_CONFIG_HEADER(config.h)
201200

0 commit comments

Comments
 (0)