Skip to content

Commit 1c32d75

Browse files
committed
Remove mkinstalldirs, install-sh and missing
These scripts are part of Automake [1] and are in current *nix build system not used anymore nor empty files need to be created. [1] https://www.gnu.org/software/automake/manual/html_node/Auxiliary-Programs.html
1 parent cb1f63f commit 1c32d75

File tree

3 files changed

+3
-15
lines changed

3 files changed

+3
-15
lines changed

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,6 @@ Makefile
8181
Makefile.fragments
8282
Makefile.objects
8383

84-
# Generated by `./buildconf` or `cd ext/name && phpize`
85-
install-sh
86-
missing
87-
mkinstalldirs
88-
8984
# RPM specification file generated by `./configure`
9085
/php7.spec
9186

build/build2.mk

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@
1616

1717
include generated_lists
1818

19-
TOUCH_FILES = mkinstalldirs install-sh missing
20-
2119
config_h_in = main/php_config.h.in
2220

23-
targets = $(TOUCH_FILES) configure $(config_h_in)
21+
targets = configure $(config_h_in)
2422

2523
PHP_AUTOCONF ?= 'autoconf'
2624
PHP_AUTOHEADER ?= 'autoheader'
@@ -36,9 +34,6 @@ $(config_h_in): configure
3634
@rm -f $@
3735
$(PHP_AUTOHEADER) $(SUPPRESS_WARNINGS)
3836

39-
$(TOUCH_FILES):
40-
touch $(TOUCH_FILES)
41-
4237
aclocal.m4: configure.ac acinclude.m4
4338
@echo rebuilding $@
4439
cat acinclude.m4 ./build/libtool.m4 > $@

scripts/phpize.in

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ SED="@SED@"
1111

1212
FILES_BUILD="shtool libtool.m4 ax_check_compile_flag.m4 ax_gcc_func_attribute.m4 php_cxx_compile_stdcxx.m4 pkg.m4 config.guess config.sub ltmain.sh"
1313
FILES="acinclude.m4 Makefile.global run-tests*.php"
14-
CLEAN_FILES="$FILES *.o *.lo *.la .libs/ build/ modules/ install-sh \
15-
mkinstalldirs missing config.nice configure configure.ac \
14+
CLEAN_FILES="$FILES *.o *.lo *.la .libs/ build/ modules/ \
15+
config.nice configure configure.ac \
1616
aclocal.m4 config.h config.h.in conftest* libtool config.cache autom4te.cache/ \
1717
config.log config.status Makefile Makefile.fragments Makefile.objects confdefs.h \
1818
run-tests*.php tests/*.diff tests/*.exp tests/*.log tests/*.out tests/*.php"
@@ -196,8 +196,6 @@ case "$1" in
196196

197197
phpize_replace_prefix
198198

199-
touch install-sh mkinstalldirs missing
200-
201199
phpize_check_shtool
202200

203201
phpize_check_autotools

0 commit comments

Comments
 (0)