summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-05-11 10:46:00 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-05-11 10:46:00 +0200
commitd050d744777e8c5f4e3bc0cb9fcdc06828feb6e1 (patch)
tree78cdfe62a6b78154d331c9229b3802b62a445633 /build
parent1e3196a159583baf93e049ca87f98fb9e56097e2 (diff)
parent517431892b292b039784c64decfb161f4a0664e9 (diff)
downloadphp-git-d050d744777e8c5f4e3bc0cb9fcdc06828feb6e1.tar.gz
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix default sendmail path when not found during build
Diffstat (limited to 'build')
-rw-r--r--build/php.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/build/php.m4 b/build/php.m4
index 51fa37446a..fdcf8a22db 100644
--- a/build/php.m4
+++ b/build/php.m4
@@ -1733,7 +1733,7 @@ dnl Search for the sendmail binary.
dnl
AC_DEFUN([PHP_PROG_SENDMAIL], [
PHP_ALT_PATH=/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib:/usr/lib
- AC_PATH_PROG(PROG_SENDMAIL, sendmail,[], $PATH:$PHP_ALT_PATH)
+ AC_PATH_PROG(PROG_SENDMAIL, sendmail, /usr/sbin/sendmail, $PATH:$PHP_ALT_PATH)
PHP_SUBST(PROG_SENDMAIL)
])