summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Lamskoy2022-01-27 14:21:33 +0200
committerEugene Lamskoy2022-01-27 14:21:33 +0200
commite6523b8ed1670a11a104473caed5e3892bc7f1ea (patch)
tree973afde4950e257a78c9396120520cc6d6af398a
parenta95a89d23bfc9f95ebf2e5f57353a3c782181ce7 (diff)
downloadaur-e6523b8ed1670a11a104473caed5e3892bc7f1ea.tar.gz
Sendmail detection
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 30c12e4c3b85..2a0f598f0caf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -655,7 +655,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