summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2021-03-16 14:30:24 +0100
committerNikita Popov <nikita.ppv@gmail.com>2021-03-16 14:36:10 +0100
commite35f9dfecc49d14722dbb1dfc0fe89d5dfbc4f4f (patch)
treea261244fed9fa4665a24ac000a2fa0ab029990b2 /build
parent59e610092a0c667098de0cca85c224d0a1b66990 (diff)
downloadphp-git-e35f9dfecc49d14722dbb1dfc0fe89d5dfbc4f4f.tar.gz
Don't check executability
As $(PHP) is not an absolute path, test -x doesn't do anything meaningful. Rely on the autoconf check.
Diffstat (limited to 'build')
-rw-r--r--build/Makefile.global2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Makefile.global b/build/Makefile.global
index cc21973f18..2ff838cb33 100644
--- a/build/Makefile.global
+++ b/build/Makefile.global
@@ -144,7 +144,7 @@ prof-use:
%_arginfo.h: %.stub.php
@if test -e "$(top_srcdir)/build/gen_stub.php"; then \
- if test ! -z "$(PHP)" && test -x "$(PHP)"; then \
+ if test ! -z "$(PHP)"; then \
echo Parse $< to generate $@;\
$(PHP) $(top_srcdir)/build/gen_stub.php $<; \
fi; \