summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Lamskoy2022-01-27 14:22:02 +0200
committerEugene Lamskoy2022-01-27 14:22:02 +0200
commitc34b410cadce0337652e854d48bab0758fbcebbf (patch)
tree96d240265ee269446b404abeb4f644394b4944b1
parent77c72fe0cb36cc6037e0b20e2746f50a28403233 (diff)
downloadaur-c34b410cadce0337652e854d48bab0758fbcebbf.tar.gz
Sendmail detection
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 090004c8bd19..2dea920f6c51 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -646,7 +646,7 @@ build() {
check() {
pushd "build-cli"
# Check if sendmail was configured correctly (FS#47600)
- sapi/cli/php -n -r 'echo ini_get("sendmail_path");' | grep -q '/usr/bin/sendmail'
+ sapi/cli/php -n -r 'echo ini_get("sendmail_path");' | grep -q $(which sendmail)
export REPORT_EXIT_STATUS=1
export NO_INTERACTION=1
export SKIP_ONLINE_TESTS=1