summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMickaël Thomas2018-07-08 11:39:36 +0200
committerMickaël Thomas2018-07-08 11:39:36 +0200
commit595e1285036393654cd5f5c312577c3cd83d354a (patch)
tree5c54e5dd6f47dc5f08a3252ede82550a3a687297 /PKGBUILD
parent2692f480ae7a20fc4b1e6bd1e3d156e414e8ce6c (diff)
downloadaur-595e1285036393654cd5f5c312577c3cd83d354a.tar.gz
Fix sendmail detection in check()
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 77c713f36e4b..6a1d444adce0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -252,7 +252,7 @@ check() {
cd "${srcdir}/${_pkgbase}-${pkgver}"
# Check if sendmail was configured correctly (FS#47600)
- "${srcdir}"/build-php/sapi/cli/php -n -r 'echo ini_get("sendmail_path");' | grep -q '/usr/bin/sendmail'
+ "${srcdir}"/build-php/sapi/cli/php -n -r 'echo ini_get("sendmail_path");' | grep -q 'sendmail'
export REPORT_EXIT_STATUS=1
export NO_INTERACTION=1